2015-02-17 04:31:44 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content">
|
|
|
|
|
|
|
|
<Spinner android:id="@+id/default_or_custom"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:entries="@array/default_or_custom_entries"
|
|
|
|
android:entryValues="@array/default_or_custom_values"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_marginStart="16dp"
|
2015-02-17 04:31:44 +00:00
|
|
|
android:spinnerMode="dropdown"/>
|
|
|
|
|
|
|
|
<TextView android:id="@+id/default_label"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
2015-02-17 04:31:44 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
|
|
<EditText android:id="@+id/custom_edit"
|
2019-03-20 22:52:14 +00:00
|
|
|
android:layout_marginStart="16dp"
|
|
|
|
android:layout_marginEnd="16dp"
|
|
|
|
android:layout_marginTop="16dp"
|
|
|
|
android:layout_marginBottom="16dp"
|
2015-02-17 04:31:44 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"/>
|
|
|
|
|
|
|
|
</LinearLayout>
|