summaryrefslogtreecommitdiff
path: root/anastasis-ui/src/main/res/layout/country_usa.xml
diff options
context:
space:
mode:
authorTorsten Grote <t@grobox.de>2020-06-26 11:25:48 -0300
committerTorsten Grote <t@grobox.de>2020-06-26 11:25:48 -0300
commit9cbb35ccc65db7b5d8ce1afe4b3c5feae30be1eb (patch)
tree4e3c857575303b689a0e4c15915ef2ec274a9187 /anastasis-ui/src/main/res/layout/country_usa.xml
parent730fbaa702b467669c4b88f6c03fa3e1823abf73 (diff)
downloadtaler-android-9cbb35ccc65db7b5d8ce1afe4b3c5feae30be1eb.tar.gz
taler-android-9cbb35ccc65db7b5d8ce1afe4b3c5feae30be1eb.tar.bz2
taler-android-9cbb35ccc65db7b5d8ce1afe4b3c5feae30be1eb.zip
[anastasis] add more countries and allow switching between them
Diffstat (limited to 'anastasis-ui/src/main/res/layout/country_usa.xml')
-rw-r--r--anastasis-ui/src/main/res/layout/country_usa.xml38
1 files changed, 38 insertions, 0 deletions
diff --git a/anastasis-ui/src/main/res/layout/country_usa.xml b/anastasis-ui/src/main/res/layout/country_usa.xml
new file mode 100644
index 0000000..f9762e6
--- /dev/null
+++ b/anastasis-ui/src/main/res/layout/country_usa.xml
@@ -0,0 +1,38 @@
+<?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"
+ android:layout_width="match_parent"
+ android:layout_height="match_parent"
+ android:orientation="vertical">
+
+ <com.google.android.material.textfield.TextInputLayout
+ android:id="@+id/idNumberInput"
+ style="@style/Widget.MaterialComponents.TextInputLayout.OutlinedBox.Dense"
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:layout_margin="16dp">
+
+ <com.google.android.material.textfield.TextInputEditText
+ android:layout_width="match_parent"
+ android:layout_height="wrap_content"
+ android:hint="Social security number"
+ android:inputType="number"
+ android:maxLength="13" />
+
+ </com.google.android.material.textfield.TextInputLayout>
+
+</LinearLayout>