2017-06-15 08:44: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="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
android:padding="?dialogPreferredPadding"
|
2017-09-04 04:43:27 +00:00
|
|
|
style="@style/Theme.Syncthing.Dialog">
|
2017-06-15 08:44:44 +00:00
|
|
|
|
|
|
|
|
|
|
|
<Spinner
|
|
|
|
android:id="@+id/versioningTypeSpinner"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:entries="@array/versioning_types"
|
2017-09-04 04:43:27 +00:00
|
|
|
style="@style/Widget.AppCompat.Spinner.Underlined" />
|
2017-06-15 08:44:44 +00:00
|
|
|
|
|
|
|
<ScrollView
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
|
|
|
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/versioningFragmentContainer"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/finish_btn"
|
|
|
|
style="@style/Widget.AppCompat.Button.ButtonBar.AlertDialog"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="50dp"
|
2017-09-04 04:43:27 +00:00
|
|
|
android:layout_gravity="end"
|
2017-06-15 08:44:44 +00:00
|
|
|
android:text="@string/finish"
|
|
|
|
android:textColor="@color/primary_dark" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
|
|
|
|
|
|
|
</LinearLayout>
|