main_activity.xml
1.75 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?xml version="1.0" encoding="utf-8"?>
<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"
android:layout_height="match_parent"
tools:ignore="Deprecated" >
<Button
android:id="@+id/button"
android:layout_width="258dp"
android:layout_height="wrap_content"
android:layout_x="22dp"
android:layout_y="396dp"
android:text="@string/descarregar" />
<TextView
android:id="@+id/textViewRoute"
android:layout_width="250dp"
android:layout_height="22dp"
android:layout_x="29dp"
android:layout_y="362dp"
android:textSize="@android:dimen/thumbnail_height" />
<TextView
android:id="@+id/textView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_x="92dp"
android:layout_y="22dp"
android:text="@string/app_name"
android:textAppearance="?android:attr/textAppearanceLarge" />
<TextView
android:id="@+id/textViewXml"
android:layout_width="301dp"
android:layout_height="wrap_content"
android:layout_x="24dp"
android:layout_y="446dp"
android:gravity="clip_vertical"
android:hint="@string/hint"
android:scrollbarStyle="insideInset"
android:scrollbars="vertical" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="134dp"
android:layout_height="134dp"
android:layout_x="84dp"
android:layout_y="50dp"
android:src="@drawable/ic_launcher" />
</AbsoluteLayout>