当前位置:   article > 正文

自定义单选按钮(RadioButton)的样式_radiobutton 单选按钮样式

radiobutton 单选按钮样式

效果图

这里写图片描述

实现步骤

1 新建一个xml文件–radio.xml,这是单选按钮的适配器

<selector xmlns:android="http://schemas.android.com/apk/res/android">   
    <item   
    android:state_checked="false"   
    android:drawable="@drawable/icon_button0" />   
    <item   
    android:state_checked="true"   
    android:drawable="@drawable/icon_button1" />   
</selector>   
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8

2 在/layout下新建一个布局xml文件,代码如下:

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

<!--FrameLayout使得按钮浮动于地图控件之上-->
     <FrameLayout   
        android:id="@+id/fram1"
        android:layout_width="fill_parent"
        android:layout_height="wrap_content" >

        <LinearLayout
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical" >
            <!-- 百度地图控件 -->
            <com.baidu.mapapi.map.MapView
                android:id="@+id/bmapView"
                android:layout_width="fill_parent"
                android:layout_height="341dp"
                android:clickable="true" >
            </com.baidu.mapapi.map.MapView>   
        </LinearLayout>

        <LinearLayout
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="right"
            android:orientation="vertical" >
            <RadioGroup 
            android:id="@+id/MapType"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_weight="2"
            android:orientation="horizontal" >           
            <RadioButton
                android:id="@+id/normal"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:checked="true"
                <!--注意下面两行代码-->
                android:button="@null"  
                android:background="@drawable/radio"                                 
                android:text="普通" />
            <RadioButton
                android:id="@+id/statellite"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:gravity="center"
                android:button="@null"  
                android:background="@drawable/radio" 
                android:text="卫星" />                
            </RadioGroup>
         </LinearLayout> 
        </FrameLayout>
</LinearLayout>
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59

well done!!

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/在线问答5/article/detail/889662
推荐阅读
相关标签
  

闽ICP备14008679号