赞
踩
前段时间我需要一个2行2列的单选组合按钮,效果如下:
但是发现在RadioGroup添加布局的时候就会失去radioButton的互斥行,我上网查了一下相关的自定义RadioGroup的方法,希望能够找到能如意在里面随意布局的,但是貌似没有找到,好像都是根据各自的情况重写的RadioGroup,于是我就自己写按照自己的需求修改了一个例子实现RadioGroup多行多列
先上布局代码:
- <com.hecai.caipiao.football.MyRadioGroup
- android:id="@+id/sporttery_football_peilv_group"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:orientation="vertical" >
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_marginLeft="10.0dip"
- android:layout_marginRight="10.0dip"
- android:orientation="horizontal" >
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="horizontal" >
-
- <RadioButton
- android:id="@+id/sporttery_football_all_check"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@null"
- android:button="@null"
- android:drawableLeft="@drawable/radio_botton"
- android:drawablePadding="3.0dip"
- android:text="全部"
- android:textColor="@color/black"
- android:textSize="18.0sp" />
-
- <TextView
- android:id="@+id/sporttery_football_high_check_label"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginLeft="2.0dip"
- android:gravity="center_vertical"
- android:includeFontPadding="false"
- android:singleLine="true"
- android:text="全部区间" />
- </LinearLayout>
-
- <LinearLayout
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:layout_weight="1"
- android:orientation="horizontal" >
-
- <RadioButton
- android:id="@+id/sporttery_football_low_check"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:background="@null"
- android:button="@null"
- android:drawableLeft="@drawable/radio_botton"
- android:drawablePadding="3.0dip"
- android:text="1.5以下"
- android:textColor="@color/black"
- android:textSize="18.0sp" />
-
- <TextView
- android:id="@+id/sporttery_football_low_check_label"
- android:layout_width=

Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。