|
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
|
<ListView
android:id="@+id/listView1"
|
|
21
22
|
android:layout_width="match_parent"
android:layout_height="wrap_content"
|
|
23
24
|
android:clickable="true"
android:visibility="visible" >
|
|
25
|
|
|
26
|
</ListView>
|
|
27
|
|
|
28
|
</LinearLayout>
|