У меня есть два вида бок о бок внутри относительного макета.Я хочу, чтобы формат обоих представлений был таким же, как слева («Сегодняшние специальные»)Я назначил обоим представлениям одни и те же атрибуты, хотя они разные.
вот мой xml.
<FrameLayout 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:orientation="vertical"
tools:ignore="ExtraText">
<RelativeLayout
android:id="@+id/view_background"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@color/bg_row_background">
<ImageView
android:id="@+id/delete_icon"
android:layout_width="@dimen/ic_delete"
android:layout_height="@dimen/ic_delete"
android:layout_alignParentEnd="true"
android:layout_centerVertical="true"
android:layout_marginEnd="@dimen/padd_10"
android:contentDescription="@string/deleteIcon"
android:src="@drawable/ic_delete_white_24dp" />
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerVertical="true"
android:layout_marginEnd="@dimen/padd_10"
android:layout_toStartOf="@id/delete_icon"
android:text="@string/delete"
android:textColor="#fff"
android:textSize="12sp" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/view_foreground"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="@android:color/white"
android:padding="@dimen/padd_5">
<TextView
android:id="@+id/name"
android:layout_width="wrap_content"
android:layout_height="@dimen/ic_delete"
android:background="@color/description"
android:textColor="@color/item_name"
android:textSize="12sp" />
<TextView
android:id="@+id/namecat"
android:layout_width="wrap_content"
android:layout_height="@dimen/ic_delete"
android:layout_alignParentEnd="true"
android:layout_toEndOf="@id/name"
android:background="@color/description"
android:paddingStart="@dimen/padd_10"
android:textColor="@color/item_name"
android:textSize="12sp" />
</RelativeLayout>
</FrameLayout>
Спасибо за вашу помощь.