|
1
|
<?xml version="1.0" encoding="utf-8"?>
|
|
2
3
4
5
|
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/AbsoluteLayout1"
android:layout_width="wrap_content"
|
|
6
|
android:layout_height="match_parent"
|
|
7
|
tools:ignore="Deprecated" >
|
|
8
|
|
|
9
10
11
|
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
|
|
12
|
android:layout_height="wrap_content"
|
|
13
14
15
16
|
android:layout_x="92dp"
android:layout_y="22dp"
android:text="@string/app_name"
android:textAppearance="?android:attr/textAppearanceLarge" />
|
|
17
|
|
|
18
19
20
21
22
23
|
<ImageView
android:id="@+id/ImageView1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="28dp"
android:layout_y="12dp"
|
|
24
|
android:contentDescription="@string/logodescription"
|
|
25
|
android:src="@drawable/ic_launcher" />
|
|
26
|
|
|
27
28
29
30
31
32
|
<ImageView
android:id="@+id/ImageView01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="223dp"
android:layout_y="14dp"
|
|
33
|
android:contentDescription="@string/logodescription"
|
|
34
35
|
android:src="@drawable/ic_launcher" />
|
|
36
37
38
39
|
<TextView
android:id="@+id/textViewRoute"
android:layout_width="250dp"
android:layout_height="22dp"
|
|
40
41
|
android:layout_x="28dp"
android:layout_y="306dp"
|
|
42
43
|
android:textSize="@android:dimen/thumbnail_height" />
|
|
44
45
|
<TextView
android:id="@+id/textViewXml"
|
|
46
|
android:layout_width="wrap_content"
|
|
47
|
android:layout_height="wrap_content"
|
|
48
|
android:layout_x="24dp"
|
|
49
|
android:layout_y="384dp"
|
|
50
51
52
53
54
|
android:gravity="clip_vertical"
android:hint="@string/hint"
android:scrollbarStyle="insideInset"
android:scrollbars="vertical" />
|
|
55
56
57
58
59
60
61
62
|
<Button
android:id="@+id/button"
android:layout_width="258dp"
android:layout_height="wrap_content"
android:layout_x="15dp"
android:layout_y="334dp"
android:text="@string/descarregar" />
|
|
63
|
</AbsoluteLayout>
|