Blame view

res/layout/main_activity.xml 2.02 KB
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" >
Imanol-Mikel Barba Sabariego authored
8
Imanol-Mikel Barba Sabariego authored
9
10
11
    <TextView
        android:id="@+id/textView1"
        android:layout_width="match_parent"
12
        android:layout_height="wrap_content"
Imanol-Mikel Barba Sabariego authored
13
14
15
16
17
        android:layout_x="92dp"
        android:layout_y="22dp"
        android:text="@string/app_name"
        android:textAppearance="?android:attr/textAppearanceLarge" />
18
19
20
21
    <TextView
        android:id="@+id/textViewRoute"
        android:layout_width="250dp"
        android:layout_height="22dp"
Imanol-Mikel Barba Sabariego authored
22
23
        android:layout_x="26dp"
        android:layout_y="328dp"
24
25
        android:textSize="@android:dimen/thumbnail_height" />
Imanol-Mikel Barba Sabariego authored
26
27
28
    <Button
        android:id="@+id/button"
        android:layout_width="258dp"
29
        android:layout_height="wrap_content"
Imanol-Mikel Barba Sabariego authored
30
31
32
        android:layout_x="24dp"
        android:layout_y="352dp"
        android:text="@string/descarregar" />
Imanol-Mikel Barba Sabariego authored
33
34
35
36
37

    <TextView
        android:id="@+id/textViewXml"
        android:layout_width="301dp"
        android:layout_height="wrap_content"
Imanol-Mikel Barba Sabariego authored
38
39
        android:layout_x="28dp"
        android:layout_y="400dp"
Imanol-Mikel Barba Sabariego authored
40
41
42
43
44
        android:gravity="clip_vertical"
        android:hint="@string/hint"
        android:scrollbarStyle="insideInset"
        android:scrollbars="vertical" />
Imanol-Mikel Barba Sabariego authored
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
    <ImageView
        android:id="@+id/ImageView1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_x="28dp"
        android:layout_y="12dp"
        android:src="@drawable/ic_launcher" />

    <ImageView
        android:id="@+id/ImageView01"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_x="223dp"
        android:layout_y="14dp"
        android:src="@drawable/ic_launcher" />
61
</AbsoluteLayout>