|
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
|
|
8
|
android:id="@+id/textViewTitle"
|
|
9
10
|
android:layout_width="wrap_content"
android:layout_height="wrap_content"
|
|
11
|
android:layout_gravity="left"
|
|
12
13
|
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
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"
|
|
24
|
android:layout_gravity="left"
|
|
25
26
27
28
|
android:textAppearance="?android:attr/textAppearanceMedium" />
</ScrollView>
</LinearLayout>
|