Blame view

res/layout/main_activity.xml 1.83 KB
Imanol-Mikel Barba Sabariego authored
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"
Imanol-Mikel Barba Sabariego authored
20
        android:focusable="false"
Imanol-Mikel Barba Sabariego authored
21
22
23
24
        android:focusableInTouchMode="false"
        android:maxHeight="@dimen/lesize"
        android:maxWidth="@dimen/lesize"
        android:scaleType="fitCenter" />
Imanol-Mikel Barba Sabariego authored
25
Imanol-Mikel Barba Sabariego authored
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"
Imanol-Mikel Barba Sabariego authored
36
37
38
        android:scrollbars="vertical"
        android:textColorHint="@color/Whyte_POwaH"
        android:textStyle="bold" />
Imanol-Mikel Barba Sabariego authored
39
Imanol-Mikel Barba Sabariego authored
40
41
42
43
44
45
46
47
48
    <TextView
        android:id="@+id/textViewUrl"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignTop="@+id/textViewXml"
        android:layout_centerHorizontal="true"
        android:layout_marginTop="21dp"
        android:textAppearance="?android:attr/textAppearanceSmall" />
Imanol-Mikel Barba Sabariego authored
49
</RelativeLayout>