| OLD | NEW | 
| (Empty) |  | 
 |   1 <?xml version="1.0" encoding="utf-8"?> | 
 |   2 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" | 
 |   3     android:layout_width="fill_parent" | 
 |   4     android:layout_height="wrap_content" | 
 |   5     android:minHeight="?android:attr/listPreferredItemHeight" | 
 |   6     android:gravity="center_vertical" | 
 |   7     android:paddingRight="?android:attr/scrollbarSize" > | 
 |   8  | 
 |   9     <LinearLayout | 
 |  10         android:layout_width="match_parent" | 
 |  11         android:layout_height="wrap_content" | 
 |  12         android:layout_margin="6dip" | 
 |  13         android:orientation="horizontal" > | 
 |  14  | 
 |  15         <TextView android:id="@+android:id/title" | 
 |  16                   android:layout_width="wrap_content" | 
 |  17                   android:layout_height="wrap_content" | 
 |  18                   android:singleLine="true" | 
 |  19                   android:textAppearance="?android:attr/textAppearanceMedium" | 
 |  20                   android:textColor="#0099cc" | 
 |  21                   android:ellipsize="marquee" | 
 |  22                   android:fadingEdge="horizontal" | 
 |  23                   android:layout_weight="1" | 
 |  24                   android:gravity="left" /> | 
 |  25         | 
 |  26         <TextView android:layout_width="wrap_content" | 
 |  27                   android:layout_height="wrap_content" | 
 |  28                   android:paddingRight="10dp" | 
 |  29                   android:textAppearance="?android:attr/textAppearanceLarge" | 
 |  30                   android:textColor="#9a9a9a" | 
 |  31                   android:text=">" | 
 |  32                   android:gravity="right" /> | 
 |  33  | 
 |  34      </LinearLayout> | 
 |  35  | 
 |  36 </LinearLayout> | 
 |  37  | 
| OLD | NEW |