| Index: mobile/android/base/resources/layout/abb_custom_prefscreen.xml |
| diff --git a/mobile/android/base/resources/layout/abb_custom_prefscreen.xml b/mobile/android/base/resources/layout/abb_custom_prefscreen.xml |
| new file mode 100644 |
| index 0000000000000000000000000000000000000000..e2e2d600b843306901fa0d4ca3dff64e8bfd9257 |
| --- /dev/null |
| +++ b/mobile/android/base/resources/layout/abb_custom_prefscreen.xml |
| @@ -0,0 +1,37 @@ |
| +<?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="wrap_content" |
| + android:minHeight="?android:attr/listPreferredItemHeight" |
| + android:gravity="center_vertical" |
| + android:paddingRight="?android:attr/scrollbarSize" > |
| + |
| + <LinearLayout |
| + android:layout_width="match_parent" |
| + android:layout_height="wrap_content" |
| + android:layout_margin="6dip" |
| + android:orientation="horizontal" > |
| + |
| + <TextView android:id="@+android:id/title" |
| + android:layout_width="wrap_content" |
| + android:layout_height="wrap_content" |
| + android:singleLine="true" |
| + android:textAppearance="?android:attr/textAppearanceMedium" |
| + android:textColor="#0099cc" |
| + android:ellipsize="marquee" |
| + android:fadingEdge="horizontal" |
| + android:layout_weight="1" |
| + android:gravity="left" /> |
| + |
| + <TextView android:layout_width="wrap_content" |
| + android:layout_height="wrap_content" |
| + android:paddingRight="10dp" |
| + android:textAppearance="?android:attr/textAppearanceLarge" |
| + android:textColor="#9a9a9a" |
| + android:text=">" |
| + android:gravity="right" /> |
| + |
| + </LinearLayout> |
| + |
| +</LinearLayout> |
| + |