Android RadioButton设置选择器(控件设选择器)可以做类似底部导航栏

一言不合就上图

Android RadioButton设置选择器(控件设选择器)可以做类似底部导航栏_第1张图片
一般的控件都可以设置选择器:即选择改变样式
包括textView,imageView,button等等…
首先创建选择器,在src—main—res—drawable—
Android RadioButton设置选择器(控件设选择器)可以做类似底部导航栏_第2张图片
右键new—Drawable resource file:
这里写图片描述
创建起名字:
Android RadioButton设置选择器(控件设选择器)可以做类似底部导航栏_第3张图片
//这是图片选择器:draw_top_image.xml

//checked选中(true)一种状态的图片样式
    <item android:drawable="@mipmap/ic_launcher_round" android:state_checked="true">item>
//checked未选中(false)一种状态的图片样式
    <item android:drawable="@mipmap/ic_launcher" android:state_checked="false">item>

//这是文本颜色选择器:text_color.xml

//checked选中(true)一种状态的图片样式
    <item android:color="@color/colorAccent" android:state_checked="true">item>
//checked未选中(false)一种状态的图片样式
    <item android:color="@color/colorPrimary" android:state_checked="false">item>

//布局文件:

"@+id/radioGroup"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal">

        "@+id/shou"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:layout_weight="1"//权重
            android:button="@null"//去圆圈
            android:drawableTop="@drawable/draw_top_image"//图片选择器在这里加
            android:gravity="center_horizontal"//文字居中
            android:text="首页"
            android:textColor="@drawable/text_color"//文字的颜色选择器在这里加
             />

        "@+id/fen"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:layout_weight="1"
            android:button="@null"
            android:drawableTop="@drawable/draw_top_image"
            android:gravity="center_horizontal"
            android:text="分类"
            android:textColor="@drawable/text_color" />

        "@+id/gou"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:layout_weight="1"
            android:button="@null"
            android:drawableTop="@drawable/draw_top_image"
            android:gravity="center_horizontal"
            android:text="购物"
            android:textColor="@drawable/text_color" />

        "@+id/wode"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"

            android:layout_weight="1"
            android:button="@null"

            android:drawableTop="@drawable/draw_top_image"
            android:gravity="center_horizontal"
            android:text="个人"
            android:textColor="@drawable/text_color" />
    </RadioGroup>

完事儿

强调几点:
1我的Android studio是2.3.3版本,SDK下-v7:26.+’

compile 'com.android.support:appcompat-v7:26.+' 

你可能感兴趣的:(控件使用,选择器)