| 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..b2ec2bf56c5aa105b8c097eee561ec2315f6b466 | 
| --- /dev/null | 
| +++ b/mobile/android/base/resources/layout/abb_custom_prefscreen.xml | 
| @@ -0,0 +1,40 @@ | 
| +<?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_marginStart="6dip" | 
| +        android:layout_marginEnd="6dip" | 
| +        android:layout_marginTop="6dip" | 
| +        android:layout_marginBottom="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> | 
| + | 
|  |