Home | History | Annotate | Download | only in layout
      1 <?xml version="1.0" encoding="utf-8"?>
      2 <TableRow xmlns:android="http://schemas.android.com/apk/res/android"
      3     android:layout_width="fill_parent"
      4     android:layout_height="fill_parent" >
      5 
    <TextView
      7         android:id="@+id/row_textview_name"
      8         android:layout_width="wrap_content"
      9         android:layout_height="wrap_content"
     10         android:saveEnabled="false"
     11         android:layout_marginRight="10dp"
     12         android:textAppearance="?android:attr/textAppearanceSmall" />
     13 
     14     <TextView
     15         android:id="@+id/row_textview_value"
     16         android:layout_width="fill_parent"
     17         android:layout_height="wrap_content"
     18         android:layout_weight="1"
     19         android:textAppearance="?android:attr/textAppearanceSmall" />
     20 
     21 </TableRow>