码迷,mamicode.com
首页 > 其他好文 > 详细

RadioGroup和Radiobutton

时间:2016-04-12 19:16:23      阅读:120      评论:0      收藏:0      [点我收藏+]

标签:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<RadioGroup
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"

>
<RadioButton
android:id="@+id/r1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="资讯"
android:layout_weight="1"

android:button="@null"
android:gravity="center"
android:textSize="25dp"
/>
<RadioButton
android:id="@+id/r2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="热点"
android:layout_weight="1"
android:button="@null"
android:textSize="25dp"
android:gravity="center"
/>
<RadioButton
android:id="@+id/r3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="博客"
android:layout_weight="1"
android:button="@null"
android:gravity="center"
android:textSize="25dp"

/>
<RadioButton
android:id="@+id/r4"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="推荐"
android:button="@null"
android:gravity="center"
android:textSize="25dp"
android:layout_weight="1"
/>

</RadioGroup>

</LinearLayout>

 
   

RadioGroup和Radiobutton

标签:

原文地址:http://www.cnblogs.com/nanze/p/5383536.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!