24

我有一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 布局有一些布局(例如,线性)作为根元素,它可以正常工作。但是当我尝试<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>被用作 aroot element并在另一段 od 代码中膨胀:

ArrayAdapter<String> adapter = 
    new ArrayAdapter<String>(this, 
                             R.layout.layers_list_item, 
                             R.id.layers_list_item_text);

并且随着添加的每个元素,适配器都试图以R.layout.layers_list_itemroot<merge>身份膨胀。

4

2 回答 2

35

如果没有容器元素,您不能在最终布局中使用<merge>root element“当您知道此布局将被放置到已经包含适当父视图以包含该元素的子级的布局中时,将其用作根元素很有用。当您计划将此布局包含在另一个布局中时,这特别有用文件使用并且此布局不需要不同的 ViewGroup 容器”——来自“developer.android.com”

这个例子展示了如何使用<merge>: http: //www.coderzheaven.com/2011/06/26/merge-two-layout-xml-in-android/

更新:

您应该尝试使用此示例中的 Constructor(Context, AttributeSet)。我认为它会解决你的问题。

文件 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"      
    />
于 2012-12-26T11:47:01.817 回答
-1
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"      
    />`
于 2020-09-16T08:05:44.497 回答