31 lines
1.1 KiB
XML
31 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:clickable="false"
|
|
android:focusable="false"
|
|
android:orientation="horizontal"
|
|
android:padding="8dp">
|
|
|
|
<TextView
|
|
android:id="@+id/name"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1"
|
|
android:textColor="@color/day_night"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
tools:text="@string/text_sample_string" />
|
|
|
|
<TextView
|
|
android:id="@+id/value"
|
|
android:layout_width="0dp"
|
|
android:layout_height="wrap_content"
|
|
android:layout_weight="1.2"
|
|
android:textColor="@color/day_night"
|
|
android:textSize="12sp"
|
|
android:textStyle="bold"
|
|
tools:text="@string/text_sample_string" />
|
|
|
|
</LinearLayout> |