2018-08-20 19:00:20 +02:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:layout_width="match_parent"
|
2019-11-15 16:32:25 +01:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2019-09-06 17:55:14 +02:00
|
|
|
|
2018-08-20 19:00:20 +02:00
|
|
|
<AutoCompleteTextView
|
|
|
|
android:id="@+id/search_instance"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:hint="@string/instance"
|
2019-11-15 16:32:25 +01:00
|
|
|
android:inputType="textWebEmailAddress"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:maxLines="1" />
|
|
|
|
|
2018-12-26 15:43:36 +01:00
|
|
|
<RadioGroup
|
|
|
|
android:id="@+id/set_attachment_group"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical">
|
2019-09-06 17:55:14 +02:00
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/mastodon_instance"
|
2018-12-26 15:43:36 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-11-15 16:32:25 +01:00
|
|
|
android:checked="true"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/mastodon_instance" />
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/peertube_instance"
|
2018-12-26 15:43:36 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/peertube_instance" />
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/pixelfed_instance"
|
2018-12-26 15:43:36 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/pixelfed_instance" />
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/misskey_instance"
|
2018-12-29 12:09:02 +01:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/misskey_instance" />
|
|
|
|
|
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/gnu_instance"
|
2019-05-11 19:58:41 +02:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2019-09-06 17:55:14 +02:00
|
|
|
android:text="@string/gnu_instance" />
|
2019-12-08 13:57:56 +01:00
|
|
|
<RadioButton
|
|
|
|
android:id="@+id/twitter_accounts"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:text="@string/twitter_accounts" />
|
2018-12-26 15:43:36 +01:00
|
|
|
</RadioGroup>
|
2018-08-20 19:00:20 +02:00
|
|
|
</LinearLayout>
|