28 lines
1.1 KiB
XML
28 lines
1.1 KiB
XML
<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>
|