Alexander Afanasyev | 9255232 | 2015-03-16 22:33:00 -0700 | [diff] [blame^] | 1 | <?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> |