summaryrefslogtreecommitdiff
path: root/actionbarsherlock-samples/roboguice/res/layout/main.xml
blob: c608c7abd3da2f015da00520b2263e57a6a0a173 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
    
    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Welcome back, Doctor Tenma."
        android:layout_marginBottom="20dp"
        />

    <TextView
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Send a remote command to Astroboy:"
        />

    <EditText
        android:id="@+id/say_text"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:hint="Say Something"
        />

    <Button
        android:id="@+id/brush_teeth"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Brush Teeth"
        />

    <Button
        android:id="@+id/fight_evil"
        android:tag="fightevil"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:text="Fight Forces of Evil"
        />


    <Button
        android:id="@+id/self_destruct"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_gravity="center"
        android:text="Self Destruct"/>
    
</LinearLayout>