ns-usbloader-mobile/app/src/main/res/layout/nsp_item.xml

46 lines
1.6 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<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:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="2dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="3dp"
android:orientation="vertical">
<CheckedTextView
android:id="@+id/checkedCTV"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:checkMark="?android:attr/listChoiceIndicatorMultiple"
android:text="Name Long" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:orientation="horizontal">
<TextView
android:id="@+id/sizeTV"
android:layout_marginRight="2dp"
android:layout_marginEnd="2dp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TEST" />
<TextView
android:id="@+id/statusTV"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="(test)" />
</LinearLayout>
</LinearLayout>
</androidx.cardview.widget.CardView>