自定义View xml布局中的<merge />

And*_*nko 12 android android-layout

我有以下自定义视图,它基于RelativeLayout:

public class LearningModeRadioButton extends
                                        RelativeLayout
                                     implements
                                        Checkable,
                                        View.OnClickListener {

    private void init(Context context, AttributeSet attrs) {
        LayoutInflater.from(context).inflate(R.layout.rb_learning_mode, this, true);
    }
}
Run Code Online (Sandbox Code Playgroud)

R.layout.rb_learning_mode 内容是:

<?xml version="1.0" encoding="utf-8"?>

<merge
        xmlns:android="http://schemas.android.com/apk/res/android"
        >

    <RadioButton
            android:id="@+id/rb"
            android:button="@drawable/sel_rb_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            />

    <TextView
            android:id="@+id/tv_mode_title"
            style="@style/text_regular"
            android:layout_toRightOf="@+id/rb"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            />

    <TextView
            android:id="@+id/tv_description"
            style="@style/text_small"
            android:layout_below="@+id/tv_mode_title"
            android:layout_alignLeft="@+id/tv_mode_title"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            />

</merge>
Run Code Online (Sandbox Code Playgroud)

它有点工作,但布局参数(layout_xxx)被忽略.我可以使用另一个<RelativeLayout/>作为布局的根元素,但我想避免在视图层次结构中有额外的级别.

所以问题是:如何在<merge/>工作中制作布局属性?

小智 19

对于可能仍然为此感到困扰的任何人,都应parentTag在merge标签内指定属性。您还需要指定layout_heightlayout_width使其起作用。

    <merge
        tools:parentTag="android.widget.RelativeLayout"
        tools:layout_width="match_parent"
        tools:layout_height="match_parent"
    >
    // Child Views
    </merge>
Run Code Online (Sandbox Code Playgroud)

编辑器现在应该正确显示所有内容。