Advertisement
shmoula

Untitled

Mar 9th, 2013
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.36 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <RelativeLayout
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent">
  6.        
  7.     <TextView
  8.         android:id="@+id/component_cell_label"
  9.         style="@style/shops_list_item_label"
  10.        
  11.         android:layout_width="wrap_content"
  12.        android:layout_height="wrap_content"
  13.        
  14.        android:layout_centerVertical="true"
  15.         android:gravity="center_vertical"
  16.    
  17.        android:layout_alignParentLeft="true"
  18.        android:layout_marginLeft="17dp" />
  19.    
  20.     <TextView
  21.         android:id="@+id/component_cell_count"
  22.         style="@style/shops_list_item_label"
  23.        
  24.         android:layout_width="wrap_content"
  25.         android:layout_height="wrap_content"
  26.        
  27.         android:layout_marginRight="12dp"
  28.         android:layout_toLeftOf="@+id/component_cell_checkbox" />
  29.    
  30.     <CheckBox
  31.         android:id="@+id/component_cell_checkbox"
  32.         style="@style/shops_list_item_checkbox"
  33.        
  34.         android:layout_width="@dimen/component_cell_checkbox_size"
  35.         android:layout_height="@dimen/component_cell_checkbox_size"
  36.        
  37.         android:layout_alignBaseline="@+id/component_cell_label"
  38.         android:layout_alignBottom="@+id/component_cell_label"
  39.         android:layout_alignParentRight="true"
  40.        
  41.         android:layout_marginRight="-3dp" />
  42. </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement