summaryrefslogtreecommitdiffstats
path: root/res/layout/activity_main.xml
blob: 08077163a616cb8fab6b58ad81521448c6b130d1 (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
41
42
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingLeft="16dp"
  android:paddingRight="16dp"
  android:orientation="vertical"
>
  <RadioGroup
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
  >
    <RadioButton
      android:id="@+id/radio_post"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/POST"
    />
    <RadioButton
      android:id="@+id/radio_put"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:text="@string/PUT"
    />
  </RadioGroup>
  <!--<Button-->
    <!--android:id="@+id/button_choose_file"-->
    <!--android:layout_width="match_parent"-->
    <!--android:layout_height="wrap_content"-->
    <!--android:text="@string/submit"-->
  <!--/>-->
  <Button
    android:id="@+id/button_submit"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="@string/submit"
  />
</LinearLayout>