|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/RelativeLayout1"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/backgroundmain"
android:focusable="true"
android:focusableInTouchMode="true"
tools:ignore="Deprecated" >
<ImageButton
android:id="@+id/button"
android:layout_width="256dp"
android:layout_height="256dp"
android:layout_centerHorizontal="true"
android:layout_centerVertical="true"
android:background="@drawable/startbuttontoggle"
android:contentDescription="@string/startbuttondescription"
|
|
20
|
android:focusable="false"
|
|
21
22
23
24
|
android:focusableInTouchMode="false"
android:maxHeight="@dimen/lesize"
android:maxWidth="@dimen/lesize"
android:scaleType="fitCenter" />
|
|
25
|
|
|
26
27
28
29
30
31
32
33
34
35
|
<TextView
android:id="@+id/textViewXml"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true"
android:layout_marginBottom="51dp"
android:gravity="clip_vertical"
android:hint="@string/hint"
android:scrollbarStyle="insideInset"
|
|
36
37
38
|
android:scrollbars="vertical"
android:textColorHint="@color/Whyte_POwaH"
android:textStyle="bold" />
|
|
39
40
|
</RelativeLayout>
|