У меня есть следующий макет:
<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="wrap_content"
android:background="@drawable/bg_round_rect_4_melanzane_dark"
android:focusable="true"
android:focusableInTouchMode="true"
android:paddingStart="16dp"
android:paddingTop="8dp"
android:paddingEnd="16dp"
android:paddingBottom="8dp">
<TextView />
<TextView />
<EditText />
</RelativeLayout>
Я надуваю это в пользовательском представлении как:
class LabeledEditText : RelativeLayout {
constructor(context: Context) : super(context)
constructor(context: Context, attrs: AttributeSet) : super(context, attrs)
constructor(context: Context, attrs: AttributeSet, defStyle: Int) : super(context, attrs, defStyle)
init {
inflate(context, R.layout.view_labeled_edit_text, this)
}
}
Все отлично работает. Но если я изменю RelativeLayout на тег слияния в моем xml, мое представление не получит свойства, такие фоновые и фокусируемые. Вот как я меняю это:
<merge xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/bg_round_rect_4_melanzane_dark"
android:focusable="true"
android:focusableInTouchMode="true"
android:paddingStart="16dp"
android:paddingTop="8dp"
android:paddingEnd="16dp"
android:paddingBottom="8dp"
tools:parentTag="android.widget.RelativeLayout">
<TextView />
<TextView />
<EditText />
</merge>
Что я должен сделать для получения параметров из тега слияния в родительский макет в моем пользовательском представлении?