2c99ee9780
- Now the user can set the prefered country. Which will set also the prefered currency. - Added the general setting model, viewmodel and dao
21 lines
746 B
XML
21 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>
|