26 lines
823 B
XML
26 lines
823 B
XML
<!-- item_variant.xml -->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal"
|
|
android:padding="12dp"
|
|
android:background="?android:attr/selectableItemBackground">
|
|
|
|
<!-- Variant Name -->
|
|
<TextView
|
|
android:id="@+id/variantName"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:text="Variant Name"
|
|
android:textSize="16sp" />
|
|
|
|
<!-- Variant Price -->
|
|
<TextView
|
|
android:id="@+id/variantPrice"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="Price"
|
|
android:textSize="16sp" />
|
|
</LinearLayout>
|