从RadioButton,android中删除涟漪效应?

前端之家收集整理的这篇文章主要介绍了从RadioButton,android中删除涟漪效应?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我已经定制了一个RadioButton样式,用于在右侧添加radiobutton图像
<RadioButton
                android:layout_margin="20dp"
                android:drawableRight="@drawable/custom_btn_radio"
                android:button="@null"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="Invite Only"/>

custom_btn_radio.xml

<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
    <item android:drawable="@drawable/check_Box" android:state_checked="false"/>
    <item android:drawable="@drawable/close_btn" android:state_checked="true"/>
</selector>

但是,radiobutton的涟漪效应也增大了.如何从RadioButton中消除涟漪效应?还有如何自定义涟漪效果

先感谢您.

解决方法

使RadioButton背景变得透明
android:background="#ffffffff"

要么

android:background="@android:color/transparent"
原文链接:https://www.f2er.com/android/317749.html

猜你在找的Android相关文章