Advertisement
moonlightcheese

Untitled

Aug 11th, 2011
105
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.97 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.         android:layout_height="wrap_content"
  4.         android:layout_width="wrap_content"
  5.         android:padding="4dip">
  6.     <TextView android:id="@+id/item_text_time"
  7.             android:layout_alignParentLeft="true"
  8.             android:textSize="14sp"
  9.             android:layout_width="wrap_content"
  10.             android:layout_height="wrap_content"
  11.             android:maxEms="10" />
  12.     <TextView android:id="@+id/item_text_duration_actual"
  13.             android:layout_below="@id/item_text_time"
  14.             android:textSize="12sp"
  15.             android:layout_width="wrap_content"
  16.             android:layout_height="wrap_content"/>
  17.     <TextView android:id="@+id/text_minutes_actual"
  18.             android:layout_alignParentRight="true"
  19.             android:text=" Actual Minutes"
  20.             android:textSize="12sp"
  21.             android:layout_alignBaseline="@id/item_text_duration_actual"
  22.             android:layout_toRightOf="@id/item_text_duration_actual"
  23.             android:layout_width="wrap_content"
  24.             android:layout_height="wrap_content"/>
  25.     <TextView android:id="@+id/item_text_duration_billed"
  26.             android:layout_below="@id/item_text_duration_actual"
  27.             android:textSize="12sp"
  28.             android:layout_width="wrap_content"
  29.             android:layout_height="wrap_content"/>
  30.     <TextView android:id="@+id/text_minutes_billed"
  31.             android:text=" Billed Minutes"
  32.             android:textSize="12sp"
  33.             android:layout_alignBaseline="@id/item_text_duration_billed"
  34.             android:layout_toRightOf="@id/item_text_duration_billed"
  35.             android:layout_width="wrap_content"
  36.             android:layout_height="wrap_content"/>
  37.     <!-- <ImageView android:id="@+id/checkmark"
  38.             android:layout_width="match_parent"
  39.             android:layout_height="?android:attr/listPreferredItemHeight"
  40.             android:gravity="center_vertical"
  41.             android:editable="false"
  42.             android:focusable="false"
  43.             android:clickable="false" /> -->
  44.     <TextView android:id="@+id/item_hidden_number"
  45.             android:layout_below="@id/item_text_duration_billed"
  46.             android:layout_width="wrap_content"
  47.             android:layout_height="wrap_content" />
  48.     <TextView android:id="@+id/item_category"
  49.             android:layout_below="@id/item_hidden_number"
  50.             android:textSize="12sp"
  51.             android:visibility="gone"
  52.             android:layout_width="wrap_content"
  53.             android:layout_height="wrap_content"/>
  54.     <CheckedTextView android:id="@+id/checkmark"
  55.             android:layout_width="match_parent"
  56.             android:layout_height="?android:attr/listPreferredItemHeight"
  57.             android:textAppearance="?android:attr/textAppearanceLarge"
  58.             android:gravity="center_vertical"
  59.             android:checkMark="?android:attr/listChoiceIndicatorMultiple"
  60.             android:paddingLeft="6dip"
  61.             android:paddingRight="6dip"
  62.             />
  63.     <TextView android:id="@+id/item_hidden_id"
  64.             android:visibility="gone"
  65.             android:layout_width="wrap_content"
  66.             android:layout_height="wrap_content" />
  67.    
  68.     <!-- <CheckBox android:id="@+id/chbx_selected"
  69.             android:layout_alignParentRight="true"
  70.             android:layout_width="wrap_content"
  71.             android:layout_height="wrap_content"/> -->
  72. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement