|
| 1 | +<?xml version="1.0" encoding="utf-8"?> |
| 2 | +<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" |
| 3 | + android:layout_width="fill_parent" |
| 4 | + android:layout_height="wrap_content" |
| 5 | + android:baselineAligned="true" |
| 6 | + android:gravity="center_vertical" |
| 7 | + android:orientation="horizontal" |
| 8 | + android:paddingLeft="16dip" |
| 9 | + android:paddingRight="12dip" > |
| 10 | + |
| 11 | + <LinearLayout |
| 12 | + android:layout_width="0dp" |
| 13 | + android:layout_height="wrap_content" |
| 14 | + android:layout_marginBottom="5dp" |
| 15 | + android:layout_marginTop="5dp" |
| 16 | + android:layout_weight="1" |
| 17 | + android:orientation="vertical" > |
| 18 | + |
| 19 | + <TextView |
| 20 | + android:id="@+id/group_list_name" |
| 21 | + android:layout_width="fill_parent" |
| 22 | + android:layout_height="wrap_content" |
| 23 | + android:textSize="16sp" |
| 24 | + android:textStyle="bold" /> |
| 25 | + |
| 26 | + <TextView |
| 27 | + android:id="@+id/group_list_details" |
| 28 | + android:layout_width="fill_parent" |
| 29 | + android:layout_height="wrap_content" |
| 30 | + android:textSize="16sp" /> |
| 31 | + </LinearLayout> |
| 32 | + |
| 33 | + <View |
| 34 | + android:layout_width="1dp" |
| 35 | + android:layout_height="fill_parent" |
| 36 | + android:layout_marginBottom="10dp" |
| 37 | + android:layout_marginTop="10dp" |
| 38 | + android:background="#80808080" /> |
| 39 | + |
| 40 | + <ImageButton |
| 41 | + android:id="@+id/btnRemoveGroup" |
| 42 | + android:layout_width="wrap_content" |
| 43 | + android:layout_height="wrap_content" |
| 44 | + android:background="@android:drawable/list_selector_background" |
| 45 | + android:contentDescription="@string/delete_device" |
| 46 | + android:padding="5dp" |
| 47 | + android:src="@drawable/ic_menu_delete" /> |
| 48 | + |
| 49 | +</LinearLayout> |
0 commit comments