Frangment和RadioGroup框架布局

来源:互联网 发布:matlab mac 2015b 编辑:程序博客网 时间:2024/05/28 22:12
<FrameLayout    android:id="@+id/fl"    android:layout_width="match_parent"    android:layout_height="match_parent"    android:layout_weight="1" /><RadioGroup    android:id="@+id/rg"    android:layout_width="match_parent"    android:layout_height="wrap_content"    android:orientation="horizontal">    <RadioButton        android:id="@+id/rb"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_weight="1"        android:button="@null"        android:text="首页" />    <RadioButton        android:id="@+id/rb1"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_weight="1"        android:button="@null"        android:text="西瓜视频" />    <RadioButton        android:id="@+id/rb2"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_weight="1"        android:button="@null"        android:text="微头条" />    <RadioButton        android:id="@+id/rb3"        android:layout_width="wrap_content"        android:layout_height="wrap_content"        android:layout_weight="1"        android:button="@null"        android:text="我的" /></RadioGroup>
原创粉丝点击