summaryrefslogtreecommitdiffstats
path: root/app/src/main/res/layout/search_instance.xml
blob: ce2d5b8946819a779ce2c1dbf3fe5d33d12b6543 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?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="wrap_content">
    <AutoCompleteTextView
        android:id="@+id/search_instance"
        android:inputType="textWebEmailAddress"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/instance"
        android:maxLines="1"
        />
    <RadioGroup
        android:id="@+id/set_attachment_group"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical">
        <RadioButton android:id="@+id/mastodon_instance"
            android:layout_width="wrap_content"
            android:checked="true"
            android:layout_height="wrap_content"
            android:text="@string/mastodon_instance"
            />
        <RadioButton android:id="@+id/peertube_instance"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/peertube_instance"
            />
        <RadioButton android:id="@+id/pixelfed_instance"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/pixelfed_instance"
            />
        <RadioButton android:id="@+id/misskey_instance"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/misskey_instance"
            />
    </RadioGroup>
</LinearLayout>