网页直播源码,自定义背景色圆角样式的方法
网页直播源码,自定义背景色圆角样式的方法实现的相关代码
来看网页直播源码radiobutton的代码:
<RadioButton android:id="@+id/rb_a" android:layout_width="0dip" android:layout_weight="1" android:layout_height="30dip" android:text="A" android:checked="true" android:button="@null" android:gravity="center" android:textColor="@drawable/comment_stu_tv_bg" android:background="@drawable/comment_stu_bg" />
comment_stu_tv_bg.xml的代码如下
<?xml version="1.0" encoding="utf-8"?> <selector xmlns:android="http://schemas.android.com/apk/res/android" > <item android:state_checked="true" android:drawable="@drawable/radiobutton_background_checked" > </item> <item android:state_checked="false" android:drawable="@drawable/radiobutton_background_unchecked"> </item> </selector>
radiobutton_background_checked.xml的代码如下:
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> <!-- 填充 --> <solid android:color="@color/orange_main_color" /> <!-- 圆角 --> <corners android:radius="5dp" /> </shape>
以上就是网页直播源码,自定义背景色圆角样式的方法实现的相关代码, 更多内容欢迎关注之后的文章
浙公网安备 33010602011771号