summaryrefslogtreecommitdiff
path: root/app/src/main/res/layout/fragment_settings.xml
blob: 0dcc721e61b68f35a718f52c3aa594e9fa9460bb (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
<?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:id="@+id/textView5"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="Android Wallet" />

            <TextView
                    android:id="@+id/textView4"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_weight="1"
                    android:text="0.6.0pre5 (Fri 20 Dec 2019" />

        </LinearLayout>

        <Space
                android:layout_width="0dp"
                android:layout_height="15dp" />

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

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

        <Button
                android:visibility="gone"
                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 (use with caution!)"
                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>