Blame view

res/layout/main_activity.xml 1.02 KB
1
<?xml version="1.0" encoding="utf-8"?>
2
3
4
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/AbsoluteLayout1"
Imanol-Mikel Barba Sabariego authored
5
6
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
7
8
    tools:ignore="Deprecated" >
Imanol-Mikel Barba Sabariego authored
9
10
    <TextView
        android:id="@+id/textViewXml"
11
        android:layout_width="wrap_content"
Imanol-Mikel Barba Sabariego authored
12
        android:layout_height="wrap_content"
Imanol-Mikel Barba Sabariego authored
13
14
        android:layout_x="38dp"
        android:layout_y="423dp"
Imanol-Mikel Barba Sabariego authored
15
16
17
18
19
        android:gravity="clip_vertical"
        android:hint="@string/hint"
        android:scrollbarStyle="insideInset"
        android:scrollbars="vertical" />
Imanol-Mikel Barba Sabariego authored
20
21
22
23
24
25
26
27
28
    <ImageButton
        android:id="@+id/button"
        android:layout_width="256dp"
        android:layout_height="256dp"
        android:layout_x="32dp"
        android:layout_y="84dp"
        android:background="@drawable/ic_startbutton"
        android:contentDescription="@string/startbuttondescription" />
29
</AbsoluteLayout>