diff options
author | Torsten Grote <t@grobox.de> | 2020-04-15 10:25:20 -0300 |
---|---|---|
committer | Torsten Grote <t@grobox.de> | 2020-04-15 10:25:20 -0300 |
commit | 8e4f85d467c8e8109026a7195757ce9448ad7b19 (patch) | |
tree | 24b7e18e7a5620f659bd4fe4a839f7e0ef8f8d40 /wallet/src/main/res/layout | |
parent | 8b7947a14349877120e74127a3949a73f917c3d2 (diff) | |
download | taler-android-8e4f85d467c8e8109026a7195757ce9448ad7b19.tar.gz taler-android-8e4f85d467c8e8109026a7195757ce9448ad7b19.tar.bz2 taler-android-8e4f85d467c8e8109026a7195757ce9448ad7b19.zip |
[wallet] move dev mode and TESTKUDOS into proper settings screen
Diffstat (limited to 'wallet/src/main/res/layout')
-rw-r--r-- | wallet/src/main/res/layout/fragment_settings.xml | 104 |
1 files changed, 0 insertions, 104 deletions
diff --git a/wallet/src/main/res/layout/fragment_settings.xml b/wallet/src/main/res/layout/fragment_settings.xml deleted file mode 100644 index 27c5f57..0000000 --- a/wallet/src/main/res/layout/fragment_settings.xml +++ /dev/null @@ -1,104 +0,0 @@ -<?xml version="1.0" encoding="utf-8"?><!-- - ~ This file is part of GNU Taler - ~ (C) 2020 Taler Systems S.A. - ~ - ~ GNU Taler is free software; you can redistribute it and/or modify it under the - ~ terms of the GNU General Public License as published by the Free Software - ~ Foundation; either version 3, or (at your option) any later version. - ~ - ~ GNU Taler is distributed in the hope that it will be useful, but WITHOUT ANY - ~ WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR - ~ A PARTICULAR PURPOSE. See the GNU General Public License for more details. - ~ - ~ You should have received a copy of the GNU General Public License along with - ~ GNU Taler; see the file COPYING. If not, see <http://www.gnu.org/licenses/> - --> - -<LinearLayout 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" - android:orientation="vertical" - tools:context=".SettingsFragment"> - - - <TextView - android:id="@+id/editText2" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:ems="10" - android:text="@string/settings_version" - 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="@string/app_name" /> - - <TextView - android:id="@+id/textView4" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:layout_weight="1" - tools:text="0.6.0pre8" /> - - </LinearLayout> - - <Space - android:layout_width="0dp" - android:layout_height="15dp" /> - - <TextView - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:ems="10" - android:text="@string/settings_backups" - android:textSize="18sp" - android:visibility="gone" /> - - <Button - android:id="@+id/button_backup_export" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/settings_export_to_file" - android:visibility="gone" /> - - <Button - android:id="@+id/button_backup_import" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/settings_import_from_file" - android:visibility="gone" /> - - - <TextView - android:id="@+id/devSettingsTitle" - android:layout_width="match_parent" - android:layout_height="wrap_content" - android:ems="10" - android:text="@string/settings_developer" - 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:id="@+id/button_reset_wallet_dangerously" - android:layout_width="wrap_content" - android:layout_height="wrap_content" - android:text="@string/settings_reset" /> - -</LinearLayout> |