Home | History | Annotate | Download | only in layout
      1 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
      2     android:layout_width="match_parent"
      3     android:layout_height="wrap_content"
      4     android:paddingTop="1dip"
      5     android:paddingBottom="1dip"
      6     android:paddingLeft="6dip"
      7     android:paddingRight="6dip">
      8 
      9     <ImageView android:id="@+id/icon"
     10         android:layout_width="24dip"
     11         android:layout_height="24dip"/>
     12 
     13     <TextView android:id="@android:id/text1"
     14         android:layout_width="wrap_content"
     15         android:layout_height="wrap_content"
     16         android:layout_gravity="center_horizontal"
     17         android:paddingLeft="6dip" />
     18 </LinearLayout>
     19