12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@color/GreyWhite"
- android:orientation="vertical">
- <RadioGroup
- android:id="@+id/trade_sort_group"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:paddingLeft="10dp"
- android:paddingRight="20dp">
- <RadioButton
- android:id="@+id/trade_sort_0"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="全部" />
- <RadioButton
- android:id="@+id/trade_sort_1"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="最近" />
- <RadioButton
- android:id="@+id/trade_sort_2"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="出售" />
- <RadioButton
- android:id="@+id/trade_sort_3"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:text="求购" />
- </RadioGroup>
- </LinearLayout>
|