summaryrefslogtreecommitdiff
path: root/res/layout/fragment_status.xml
blob: 65f63b1fba7f5e5f4302ca96a5eeabdf59ff8cc7 (plain)
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
              xmlns:tools="http://schemas.android.com/tools"
              android:orientation="vertical"
              android:layout_width="match_parent"
              android:layout_height="match_parent"
        >

    <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:text="Message Placeholder"
            android:id="@+id/status_message"
            style="@android:style/TextAppearance.DeviceDefault.Large"
            tools:ignore="HardcodedText"/>

    <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="fill_parent"
            android:orientation="vertical"
            >


        <ScrollView
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:autoText="true"
                android:id="@+id/status_scrollview"
                android:layout_weight="1">

            <TextView
                    android:layout_height="match_parent"
                    android:layout_width="match_parent"
                    android:id="@+id/status_logmessages"/>
        </ScrollView>

        <Button
                android:drawableLeft="@drawable/cancel"
                android:text="Close"
                android:id="@+id/status_cancel"
                android:layout_width="match_parent"
                android:layout_height="50dp"
                />

    </LinearLayout>
</LinearLayout>