summaryrefslogtreecommitdiffstats
path: root/res/layout/activity_main.xml
diff options
context:
space:
mode:
authorTomasz Kramkowski <tomasz@kramkow.ski>2023-04-21 23:50:38 +0100
committerTomasz Kramkowski <tomasz@kramkow.ski>2023-04-21 23:50:38 +0100
commit16a36c812fabda812ecf3aaa7f12fa6f44c66b2e (patch)
treeccae60abf8301ae451cfa1f21c33b8a62d5306cf /res/layout/activity_main.xml
parentdb091bfd1db36ab66340ccad2eb7b6393a0aa3da (diff)
downloadandroid-jetpack-compose-redo-master.tar.gz
android-jetpack-compose-redo-master.tar.xz
android-jetpack-compose-redo-master.zip
Jetpack Compose and materialHEADmaster
Diffstat (limited to 'res/layout/activity_main.xml')
-rw-r--r--res/layout/activity_main.xml42
1 files changed, 0 insertions, 42 deletions
diff --git a/res/layout/activity_main.xml b/res/layout/activity_main.xml
deleted file mode 100644
index 0807716..0000000
--- a/res/layout/activity_main.xml
+++ /dev/null
@@ -1,42 +0,0 @@
-<?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>