OLD | NEW |
---|---|
(Empty) | |
1 <?xml version="1.0" encoding="utf-8"?> | |
2 | |
3 <TextView xmlns:android="http://schemas.android.com/apk/res/android" | |
4 android:id="@+id/label" | |
5 android:layout_width="match_parent" | |
6 android:layout_height="wrap_content" | |
7 android:text="@+id/label" | |
8 android:textSize="20dp" | |
9 android:gravity="center_vertical" | |
10 android:singleLine="true" | |
11 android:minHeight="38dp" | |
Ted C
2014/04/12 01:10:27
minHeight should be 48dp per android touch guideli
keishi
2014/04/15 14:41:07
Done.
| |
12 android:paddingStart="4dp" | |
13 android:paddingEnd="4dp" /> | |
OLD | NEW |