Files
HouseProperty/app/src/main/res/layout/popwindow_layout.xml
2020-08-03 09:11:54 +08:00

24 lines
875 B
XML

<?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>