crystal-wallet-android/app/src/main/res/layout/general_settings.xml
Javier Varona 2c99ee9780 - Added General Settings layout and activity
- Now the user can set the prefered country. Which will set also the prefered currency.
- Added the general setting model, viewmodel and dao
2017-11-07 22:18:31 -04:00

22 lines
746 B
XML

<?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:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:paddingBottom="0dp"
android:paddingLeft="0dp"
android:paddingRight="0dp"
android:paddingTop="@dimen/activity_vertical_margin">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/pref_country"/>
<Spinner
android:id="@+id/spPreferedCountry"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
</LinearLayout>