blob: 9fd2a6b63cf4852d75649347859f1193f18b53fd [file] [log] [blame]
Alexander Afanasyev92552322015-03-16 22:33:00 -07001<?xml version="1.0" encoding="utf-8"?>
2<LinearLayout
3 xmlns:android="http://schemas.android.com/apk/res/android"
4 android:orientation="horizontal"
5 android:layout_width="match_parent"
6 android:layout_height="wrap_content"
7 android:padding="10dp">
8
9 <TextView
10 android:layout_width="wrap_content"
11 android:layout_height="wrap_content"
12 android:textAppearance="?android:attr/textAppearanceMedium"
13 android:text="Title"
14 android:id="@+id/title"
15 android:textColor="@android:color/primary_text_light"/>
16
17 <TextView
18 android:layout_width="match_parent"
19 android:layout_height="wrap_content"
20 android:textAppearance="?android:attr/textAppearanceMedium"
21 android:text="Value"
22 android:id="@+id/value"
23 android:textAlignment="gravity"
24 android:gravity="right"
25 android:textColor="@android:color/secondary_text_dark"
26 android:layout_gravity="right"/>
27</LinearLayout>