Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?xml version="1.0" encoding="utf-8"?>
- <RelativeLayout
- xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <TextView
- android:id="@+id/component_cell_label"
- style="@style/shops_list_item_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_centerVertical="true"
- android:gravity="center_vertical"
- android:layout_alignParentLeft="true"
- android:layout_marginLeft="17dp" />
- <TextView
- android:id="@+id/component_cell_count"
- style="@style/shops_list_item_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginRight="12dp"
- android:layout_toLeftOf="@+id/component_cell_checkbox" />
- <CheckBox
- android:id="@+id/component_cell_checkbox"
- style="@style/shops_list_item_checkbox"
- android:layout_width="@dimen/component_cell_checkbox_size"
- android:layout_height="@dimen/component_cell_checkbox_size"
- android:layout_alignBaseline="@+id/component_cell_label"
- android:layout_alignBottom="@+id/component_cell_label"
- android:layout_alignParentRight="true"
- android:layout_marginRight="-3dp" />
- </RelativeLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement