| 123456789101112131415161718192021222324252627282930 |
- <?xml version="1.0" encoding="utf-8"?>
- <androidx.constraintlayout.widget.ConstraintLayout 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"
- android:background="?android:attr/selectableItemBackground">
- <TextView
- android:id="@+id/euicc_info_title"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="24dp"
- android:layout_marginVertical="12dp"
- android:textStyle="bold"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toTopOf="parent" />
- <TextView
- android:id="@+id/euicc_info_content"
- android:layout_width="0dp"
- android:layout_height="wrap_content"
- android:layout_marginHorizontal="24dp"
- android:layout_marginVertical="12dp"
- app:layout_constraintBottom_toBottomOf="parent"
- app:layout_constraintEnd_toEndOf="parent"
- app:layout_constraintStart_toStartOf="parent"
- app:layout_constraintTop_toBottomOf="@id/euicc_info_title" />
- </androidx.constraintlayout.widget.ConstraintLayout>
|