|
1
2
|
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
3
|
android:id="@+id/LinearLayout1"
|
|
4
5
|
android:layout_width="match_parent"
android:layout_height="match_parent"
|
|
6
|
android:gravity="center_horizontal"
|
|
7
8
|
android:orientation="vertical" >
|
|
9
|
<!-- Vista en llista -->
|
|
10
|
|
|
11
|
<TextView
|
|
12
|
android:id="@+id/textViewTitle"
|
|
13
14
|
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
|
15
16
|
android:layout_marginLeft="14dp"
android:text="@string/title"
|
|
17
|
android:textAppearance="?android:attr/textAppearanceMedium" />
|
|
18
|
|
|
19
20
21
22
23
|
<Button
android:id="@+id/button1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="38dp" />
|
|
24
|
|
|
25
26
|
<Button
android:id="@+id/button2"
|
|
27
|
android:layout_width="match_parent"
|
|
28
29
|
android:layout_height="wrap_content"
android:layout_marginTop="38dp" />
|
|
30
|
|
|
31
32
33
34
35
36
37
38
39
40
41
|
<Button
android:id="@+id/button3"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="38dp" />
<Button
android:id="@+id/button4"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="38dp" />
|
|
42
|
|
|
43
44
45
46
47
48
|
<Button
android:id="@+id/button5"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="38dp" />
|
|
49
|
</LinearLayout>
|