36 lines
1.1 KiB
XML
36 lines
1.1 KiB
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:gravity="center_vertical"
|
||
|
|
android:orientation="horizontal"
|
||
|
|
android:paddingTop="8dp"
|
||
|
|
android:paddingBottom="8dp">
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/stat_icon"
|
||
|
|
android:layout_width="28dp"
|
||
|
|
android:layout_height="28dp"
|
||
|
|
android:gravity="center"
|
||
|
|
android:text="●"
|
||
|
|
android:textColor="@color/pc_text_secondary"
|
||
|
|
android:textSize="12sp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/stat_label"
|
||
|
|
android:layout_width="0dp"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:layout_weight="1"
|
||
|
|
android:paddingStart="8dp"
|
||
|
|
android:textColor="@color/pc_text_secondary"
|
||
|
|
android:textSize="13sp" />
|
||
|
|
|
||
|
|
<TextView
|
||
|
|
android:id="@+id/stat_value"
|
||
|
|
android:layout_width="wrap_content"
|
||
|
|
android:layout_height="wrap_content"
|
||
|
|
android:textColor="@color/pc_text"
|
||
|
|
android:textSize="14sp"
|
||
|
|
android:textStyle="bold" />
|
||
|
|
</LinearLayout>
|