/ABSherlock-Demos/res/layout/action_modes.xml
XML | 30 lines | 29 code | 1 blank | 0 comment | 0 complexity | cd60f6e88d159d846239365a4d70e79c MD5 | raw file
1<?xml version="1.0" encoding="utf-8"?>
2
3<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
4 android:layout_width="fill_parent"
5 android:layout_height="fill_parent"
6 android:orientation="vertical"
7 android:padding="20dip">
8 <LinearLayout
9 android:layout_width="fill_parent"
10 android:layout_height="wrap_content"
11 android:gravity="center_horizontal"
12 android:orientation="horizontal">
13 <Button
14 android:id="@+id/start"
15 android:layout_width="wrap_content"
16 android:layout_height="wrap_content"
17 android:layout_marginRight="10dp"
18 android:text="Start" />
19 <Button
20 android:id="@+id/cancel"
21 android:layout_width="wrap_content"
22 android:layout_height="wrap_content"
23 android:text="Cancel" />
24 </LinearLayout>
25 <TextView
26 android:layout_width="fill_parent"
27 android:layout_height="wrap_content"
28 android:layout_marginTop="20dp"
29 android:text="@string/action_modes_content"/>
30</LinearLayout>