我有一个CustomView
类,我想为它使用xml布局。因此,我的类扩展RelativeLayout
,膨胀xml布局并尝试将其附加到自己。
public class CustomView extends RelativeLayout
{
public CustomView (Context context)
{
super(context);
LayoutInflater.from(context).inflate(R.layout.layers_list_item, this, true);
}
}
如果我的xml布局有一些布局(例如,线性)作为根元素,它可以正常工作。但是当我尝试根据this response使用<merge>
标记时,我收到了此错误:
<merge /> can be used only with a valid ViewGroup root and attachToRoot=true
我的xml布局如下:
<?xml version="1.0" encoding="utf-8"?>
<merge xmlns:android="http://schemas.android.com/apk/res/android"
... >
<CheckBox
... />
<TextView
... />
</merge>
我还尝试从<merge... >
标记中删除所有属性,得到相同的结果。怎么了?
更新:上面的代码是正确的。
正如 secretlm 所提到的,问题是<merge>
被用作root element
并在另一段od代码中膨胀:
ArrayAdapter<String> adapter =
new ArrayAdapter<String>(this,
R.layout.layers_list_item,
R.id.layers_list_item_text);
添加了每个元素后,适配器尝试以R.layout.layers_list_item
为根目录<merge>
。
答案 0 :(得分:26)
在没有容器元素的最终布局中,您不能将<merge>
用作root element
。 “当您知道此布局将放置在已包含相应父视图的布局中以包含元素的子元素时,将此作为根元素非常有用。当您计划将此布局包含在另一个布局中时,这尤其有用文件使用和此布局不需要不同的ViewGroup容器“ - 来自”developer.android.com“
此示例显示如何使用<merge>
:http://www.coderzheaven.com/2011/06/26/merge-two-layout-xml-in-android/
<强>更新强>
您应该尝试使用此示例中的构造函数(Context,AttributeSet)。我认为它会解决你的问题。
file test.xml:
<?xml version="1.0" encoding="utf-8"?>
<merge
xmlns:android="http://schemas.android.com/apk/res/android">
<CheckBox
android:id="@+id/layers_list_item_switch"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignRight="@id/layers_list_item_root"
android:layout_alignParentRight="true"
android:layout_marginLeft="15dp"
android:button="@drawable/ic_launcher" />
<TextView
android:id="@+id/layers_list_item_text"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="left|center_vertical"
android:layout_toLeftOf="@id/layers_list_item_switch"
android:selectAllOnFocus="true"
android:text="tret"
android:ellipsize="marquee"
android:focusable="true"
android:focusableInTouchMode="true"
android:marqueeRepeatLimit="marquee_forever"
android:singleLine="true"
android:scrollHorizontally="true"
android:textColor="@android:color/black"
android:textSize="16sp"
android:textStyle="bold"
android:typeface="serif"
android:clickable="true" />
</merge>
从RelativeLayout扩展的测试类:
public class Test extends RelativeLayout
{
public Test(Context context, AttributeSet attrs) {
super(context, attrs);
LayoutInflater.from(context).inflate(R.layout.test, this, true);
}
}
主要活动:
public class MainActivity extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
}
主要布局:
<com.example.testlayout.Test
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layers_list_item_root"
android:layout_height = "fill_parent"
android:layout_width = "fill_parent"
/>
答案 1 :(得分:0)
Make sure to specify the complete path from source root in the main layout like this
`<com.example.testlayout.Test xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layers_list_item_root"
android:layout_height = "fill_parent"
android:layout_width = "fill_parent"
/>`
and not like this
`<Test xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/layers_list_item_root"
android:layout_height = "fill_parent"
android:layout_width = "fill_parent"
/>`