8

我试图根据 parent 在我的 View 中包含不同的布局Theme

按照思路:

attrs.xml

<attr name="themeLayout" format="reference" />

样式.xml

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="themeLayout">@layout/layout_a</item>
</style>

<style name="AppThemeSecond" parent="Theme.AppCompat.Light.DarkActionBar">
    <item name="themeLayout">@layout/layout_b</item>
</style>

活动.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <include layout="?attr/themeLayout" />

</RelativeLayout>

当我运行上面的代码时,我会得到以下异常:

java.lang.RuntimeException: Unable to start activity ComponentInfo{com.my.package/com.my.package.MainActivity}: android.view.InflateException: You must specifiy a valid layout reference. The layout ID ?attr/themeLayout is not valid.
            at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2325)
            at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:2387)
            at android.app.ActivityThread.access$800(ActivityThread.java:151)
            at android.app.ActivityThread$H.handleMessage(ActivityThread.java:1303)
            at android.os.Handler.dispatchMessage(Handler.java:102)
            at android.os.Looper.loop(Looper.java:135)
            at android.app.ActivityThread.main(ActivityThread.java:5254)
            at java.lang.reflect.Method.invoke(Native Method)
            at java.lang.reflect.Method.invoke(Method.java:372)
            at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:903)
            at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:698)
     Caused by: android.view.InflateException: You must specifiy a valid layout reference. The layout ID ?attr/themeLayout is not valid.
            at android.view.LayoutInflater.parseInclude(LayoutInflater.java:866)

我究竟做错了什么?有可能做到这一点吗?

注意#1:我将我的Theme设置MainActivityandroid:theme="@style/AppTheme"

注意#2:在布局编辑器的设计视图中,一切都按预期工作。如果我切换主题,则包含会正确更新。
另请参阅以下屏幕截图:

预览设计选项卡 android studio

4

3 回答 3

4

不幸的是,这是不可能的,但我真的很喜欢这个主意。我已经跟踪了流程,LayoutInflater它要求layout属性TypedValue.TYPE_REFERENCE?attr不允许的。他们甚至在方法中留下了评论来解释。

public int getAttributeResourceValue(int idx, int defaultValue) {
    int t = nativeGetAttributeDataType(mParseState, idx);
    // Note: don't attempt to convert any other types, because
    // we want to count on aapt doing the conversion for us.
    if (t == TypedValue.TYPE_REFERENCE) {
        return nativeGetAttributeData(mParseState, idx);
    }
    return defaultValue;
}

android.content.res.XmlBlock.java:385

基本上你没有做错任何事——预览中的通货膨胀的工作方式不同,这导致了混乱。

于 2015-05-15T14:14:43.583 回答
4

由于拉莫拉克在他的“深入”回答中详细解释了所有内容,我想可以说没有任何<include />标签可以解决您的问题。
因此,遵循在我的测试项目中有效的不同方法:

#1 - 替换 <include /> <ViewStub />

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity">

    <ViewStub
        android:id="@+id/myStub"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:inflatedId="@+id/myInflatedStub"
        android:layout="?attr/themeLayout" />

</RelativeLayout>

#2 - 给 ViewStub 充气

ViewStub myStub = (ViewStub) findViewById(R.id.myStub);
myStub.inflate();

这种方法有什么缺点吗?好吧,您不会在设计选项卡中看到 ViewStub-Layout 并且使用该<merge />标签将不起作用。

于 2015-05-15T17:58:31.617 回答
1

经过一番研究,我发现这个问题-"已在 Android23 中修复。但是波纹管会抛出异常。

于 2016-06-07T08:26:26.157 回答