|
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
12
13
14
|
<ImageButton
android:id="@+id/button"
android:layout_width="171dp"
android:layout_height="161dp"
android:layout_x="78dp"
android:layout_y="88dp"
|
|
15
|
android:background="@drawable/ic_startbutton"
|
|
16
|
android:contentDescription="@string/startbuttondescription" />
|
|
17
|
|
|
18
19
|
<TextView
android:id="@+id/textViewXml"
|
|
20
|
android:layout_width="wrap_content"
|
|
21
|
android:layout_height="wrap_content"
|
|
22
23
|
android:layout_x="43dp"
android:layout_y="276dp"
|
|
24
25
26
27
28
|
android:gravity="clip_vertical"
android:hint="@string/hint"
android:scrollbarStyle="insideInset"
android:scrollbars="vertical" />
|
|
29
|
</AbsoluteLayout>
|