
They are more consistent now. Transitioning to RTL languages will also be easier since more of them can be mirrored now. Also fixes some spacing issues with icons and others.
24 lines
706 B
XML
24 lines
706 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent"
|
|
android:paddingLeft="2dp"
|
|
android:paddingRight="2dp"
|
|
android:baselineAligned="false"
|
|
android:orientation="vertical">
|
|
|
|
<TextView android:id="@+id/description"
|
|
android:singleLine="false"
|
|
android:textSize="14sp"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="wrap_content"
|
|
android:paddingTop="4dp"
|
|
android:paddingBottom="2dp"
|
|
android:gravity="center" />
|
|
|
|
<ListView android:id="@android:id/list"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="fill_parent" />
|
|
|
|
</LinearLayout>
|