根据文档,如果我将一个id设置为XML资源文件中的<include>
标记,那么它应该覆盖所包含布局的根视图的id。但是,它似乎不起作用。
我创建了一个非常简单的项目来演示它:
activity_main.xml中
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<include
android:id="@+id/test"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
layout="@layout/merge_layout" />
</RelativeLayout>
merge_layout.xml
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content">
<Button
android:id="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>
</merge>
现在如果我运行它:
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
if (findViewById(R.id.button) == null)
throw new RuntimeException("button is null"); // Never happens
if (findViewById(R.id.test) == null)
throw new RuntimeException("test is null");
}
然后每次都抛出第二个异常。我错过了什么吗?
答案 0 :(得分:3)
您设法解决了这个问题,因为您所包含的布局恰好是一个ViewGroup类型,它可以是一个xml根元素。如果不是这种情况 - 即你只有一个TextView,你会需要来使用合并标签,不幸的是问题会出现。事实上,include不能覆盖以root身份合并的布局xml的id,如下面的LayoutInflater源中所示......它使得merge标签不那么有用:(
if (TAG_MERGE.equals(childName)) {
// Inflate all children.
rInflate(childParser, parent, childAttrs, false);
} else {
//...
// We try to load the layout params set in the <include /> tag.
//...
// Inflate all children.
rInflate(childParser, view, childAttrs, true);
// Attempt to override the included layout's android:id with the
// one set on the <include /> tag itself.
// While we're at it, let's try to override android:visibility.
答案 1 :(得分:0)
好的答案非常明显,我误解了<merge>
是如何运作的。我认为这个标签是强制性的,但事实并非如此。结果是android:id
已应用于<merge>
代码而不是<LinearLayout>
。
删除<merge>
标记解决了问题。