Blame view

res/layout/dirs.xml 954 Bytes
1
2
3
4
5
6
7
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical" >

    <TextView
Imanol-Mikel Barba Sabariego authored
8
        android:id="@+id/textViewTitle"
9
10
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
Imanol-Mikel Barba Sabariego authored
11
        android:layout_gravity="left"
Imanol-Mikel Barba Sabariego authored
12
        android:textAppearance="?android:attr/textAppearanceMedium" />
13
Imanol-Mikel Barba Sabariego authored
14
15
    <!-- Vista en llista -->
16
17
18
19
20
21
22
23
    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="match_parent" >

        <TextView
            android:id="@+id/text_out"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
Imanol-Mikel Barba Sabariego authored
24
            android:layout_gravity="left"
25
26
27
28
            android:textAppearance="?android:attr/textAppearanceMedium" />
    </ScrollView>

</LinearLayout>