This commit is contained in:
2020-08-03 09:11:54 +08:00
parent 537441d239
commit 06952bab00
737 changed files with 52091 additions and 0 deletions

View File

@@ -0,0 +1,24 @@
<?xml version="1.0" encoding="utf-8"?>
<layout
xmlns:android="http://schemas.android.com/apk/res/android">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:background="@drawable/retacal_background"
android:layout_height="wrap_content">
<RadioGroup
android:layout_width="match_parent"
android:id="@+id/radioGroup"
android:layout_height="wrap_content">
<RadioButton android:id="@+id/bt_item1" android:layout_width="match_parent" android:layout_height="wrap_content"
android:layout_margin="3dp"
android:text="个人报修" />
<RadioButton android:id="@+id/bt_item2" android:layout_width="match_parent" android:layout_height="wrap_content"
android:layout_margin="3dp"
android:text="单位报修" />
</RadioGroup>
</LinearLayout>
</layout>