|
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
|
<?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="fill_parent"
android:layout_height="fill_parent"
android:background="@color/backgroundmain"
android:focusable="true"
android:focusableInTouchMode="true"
tools:ignore="Deprecated" >
<TextView
android:id="@+id/textViewXml"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_x="38dp"
android:layout_y="423dp"
android:gravity="clip_vertical"
android:hint="@string/hint"
android:scrollbarStyle="insideInset"
android:scrollbars="vertical" />
<ImageButton
android:id="@+id/button"
android:layout_width="256dp"
android:layout_height="256dp"
android:layout_x="33dp"
android:layout_y="74dp"
android:background="@drawable/startbuttontoggle"
android:contentDescription="@string/startbuttondescription"
android:focusableInTouchMode="false" />
</AbsoluteLayout>
|