summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_settings.xml
blob: 6873ff4ea090b49dcd5fcb2e507f9c1ba739b78c (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             xmlns:tools="http://schemas.android.com/tools"
             android:layout_width="match_parent"
             android:layout_height="match_parent"
             android:layout_margin="10dp"
             tools:context=".Settings">

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

        <TextView
                android:id="@+id/editText2"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:ems="10"
                android:inputType="textPersonName"
                android:text="Version Information"
                android:textSize="18sp" />


        <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

            <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="Android Wallet" />


            <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="0.6.0pre4 (Mon 9 Dec 2019, update 1)" />

        </LinearLayout>


        <LinearLayout
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="horizontal">

            <TextView
                    android:id="@+id/textView5"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="Wallet Backend" />


            <TextView
                    android:id="@+id/textView4"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="0.6.0pre4 (Mon 9 Dec 2019, update 1)" />

        </LinearLayout>

        <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:ems="10"
                android:text="Backups"
                android:textSize="18sp" />

        <Button
                android:text="Export wallet to file"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/button_backup_export"/>

        <Button
                android:text="Import from file"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/button_backup_import"/>

        <TextView
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:ems="10"
                android:text="Developer Settings (be careful!)"
                android:textSize="18sp" />

        <Button
                android:text="Withdraw TESTKUDOS"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/button_withdraw_testkudos"/>

        <Button
                android:text="Reset Wallet (dangerous!)"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" android:id="@+id/button_reset_wallet_dangerously"/>
    </LinearLayout>
</FrameLayout>