urban-explorer/app/src/main/res/layout/fragment_settings.xml

28 lines
1.1 KiB
XML
Raw Normal View History

2016-08-26 19:55:33 +00:00
<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="wrap_content"
android:orientation="vertical"
tools:context="pl.tpolgrabia.urbanexplorer.fragments.SettingsFragment">
<LinearLayout android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/location_update_frequency" />
<EditText android:id="@+id/location_update_frequency"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"/>
</LinearLayout>
<Button android:id="@+id/save"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/save"/>
</LinearLayout>