Blame view

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

</LinearLayout>