|
@@ -0,0 +1,96 @@
|
|
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
|
+<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
|
+ xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content">
|
|
|
|
|
+
|
|
|
|
|
+ <androidx.cardview.widget.CardView
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginHorizontal="12dp"
|
|
|
|
|
+ android:layout_marginVertical="6dp"
|
|
|
|
|
+ app:cardCornerRadius="6dp">
|
|
|
|
|
+
|
|
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
|
|
+ android:layout_width="match_parent"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:padding="10dp">
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/name"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:textStyle="bold"
|
|
|
|
|
+ android:textSize="16sp"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toTopOf="parent"
|
|
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/state"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/state"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
|
|
+ android:textSize="14sp"
|
|
|
|
|
+ android:textStyle="italic"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/name"
|
|
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/provider_label"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/provider_label"
|
|
|
|
|
+ android:text="@string/provider"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
|
|
+ android:textSize="14sp"
|
|
|
|
|
+ android:textStyle="bold"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/state"
|
|
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/iccid_label"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/provider"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
|
|
+ android:layout_marginLeft="7dp"
|
|
|
|
|
+ android:textSize="14sp"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ app:layout_constraintLeft_toRightOf="@id/provider_label"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/state"
|
|
|
|
|
+ app:layout_constraintBottom_toTopOf="@+id/iccid"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/iccid_label"
|
|
|
|
|
+ android:text="@string/iccid"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
|
|
+ android:textSize="14sp"
|
|
|
|
|
+ android:textStyle="bold"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ app:layout_constraintLeft_toLeftOf="parent"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/provider_label"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"/>
|
|
|
|
|
+
|
|
|
|
|
+ <TextView
|
|
|
|
|
+ android:id="@+id/iccid"
|
|
|
|
|
+ android:layout_width="wrap_content"
|
|
|
|
|
+ android:layout_height="wrap_content"
|
|
|
|
|
+ android:layout_marginTop="6dp"
|
|
|
|
|
+ android:layout_marginLeft="7dp"
|
|
|
|
|
+ android:textSize="14sp"
|
|
|
|
|
+ android:singleLine="true"
|
|
|
|
|
+ app:layout_constraintLeft_toRightOf="@id/iccid_label"
|
|
|
|
|
+ app:layout_constraintTop_toBottomOf="@id/provider"
|
|
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"/>
|
|
|
|
|
+
|
|
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
|
|
+
|
|
|
|
|
+ </androidx.cardview.widget.CardView>
|
|
|
|
|
+
|
|
|
|
|
+</FrameLayout>
|