mirror of
https://github.com/xoureldeen/Vectras-VM-Android.git
synced 2026-04-28 06:19:49 +00:00
77 lines
No EOL
3.1 KiB
XML
77 lines
No EOL
3.1 KiB
XML
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<androidx.cardview.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/cdItem"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="10dp"
|
|
android:clipToPadding="false"
|
|
app:cardBackgroundColor="@color/colorPrimaryDark"
|
|
app:cardCornerRadius="10dp"
|
|
app:cardPreventCornerOverlap="true">
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<ImageView
|
|
android:id="@+id/ivIcon"
|
|
android:layout_width="85dp"
|
|
android:layout_height="85dp"
|
|
android:scaleType="centerCrop" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1.0"
|
|
android:orientation="vertical"
|
|
android:padding="10dp">
|
|
|
|
<TextView
|
|
android:id="@+id/textName"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="1"
|
|
android:text="@string/name"
|
|
android:textSize="20sp"
|
|
android:textStyle="bold" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:orientation="horizontal">
|
|
|
|
<TextView
|
|
android:id="@+id/textSize"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1.0"
|
|
android:maxLines="1"
|
|
android:text="@string/size"
|
|
android:textSize="15sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/textAvail"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:maxLines="1"
|
|
android:text="@string/availablity"
|
|
android:textSize="10sp" />
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
|
|
<RadioButton
|
|
android:id="@+id/checkBox"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:layout_margin="10dp"
|
|
android:buttonTint="@color/white"
|
|
android:clickable="true"
|
|
android:theme="@style/MyCheckboxTheme" />
|
|
</LinearLayout>
|
|
|
|
</androidx.cardview.widget.CardView>
|
|
</RelativeLayout> |