23 lines
925 B
XML
23 lines
925 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:layout_margin="8dp">
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/info_title"
|
|
android:layout_width="140dp"
|
|
android:layout_height="match_parent"
|
|
android:layout_marginStart="8dp"
|
|
android:textAppearance="?attr/textAppearanceBodyMedium" />
|
|
|
|
<com.google.android.material.textview.MaterialTextView
|
|
android:id="@+id/info_text"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:gravity="center_vertical"
|
|
android:layout_marginStart="8dp"
|
|
android:textAppearance="?attr/textAppearanceBodyMedium"
|
|
android:textColor="?android:attr/textColorSecondary" />
|
|
|
|
</LinearLayout> |