<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="CustomTheme" parent="android:Theme">
<item name="android:radioButtonStyle">@style/RadioButton</item>
</style>
<style name="RadioButton" parent="@android:style/Widget.CompoundButton.RadioButton">
<item name="android:button">@drawable/radio</item>
</style>
</resources>

<?xml version="1.0" encoding="utf-8"?>     <selector xmlns:android="http://schemas.android.com/apk/res/android">     <item android:state_checked="true" android:state_window_focused="false"         android:drawable="@drawable/radio_hover" />     <item android:state_checked="false" android:state_window_focused="false"         android:drawable="@drawable/radio_normal" />     <item android:state_checked="true" android:state_pressed="true"         android:drawable="@drawable/radio_active" />     <item android:state_checked="false" android:state_pressed="true"         android:drawable="@drawable/radio_active" />     <item android:state_checked="true" android:state_focused="true"         android:drawable="@drawable/radio_hover" />     <item android:state_checked="false" android:state_focused="true"         android:drawable="@drawable/radio_normal_off" />     <item android:state_checked="false" android:drawable="@drawable/radio_normal" />     <item android:state_checked="true" android:drawable="@drawable/radio_hover" />     </selector> 

更多相关文章

  1. 代码中设置drawableleft
  2. android 3.0 隐藏 系统标题栏
  3. Android开发中activity切换动画的实现
  4. Android(安卓)学习 笔记_05. 文件下载
  5. Android中直播视频技术探究之—摄像头Camera视频源数据采集解析
  6. 技术博客汇总
  7. android 2.3 wifi (一)
  8. AndRoid Notification的清空和修改
  9. Android中的Chronometer

随机推荐

  1. android颜色对应的xml配置值,颜色表,颜色
  2. 输入处理 Input Processor
  3. [Android][工具类]TimeUtils
  4. Android(安卓)代码混淆exception解决办法
  5. Android通知频道,通知点
  6. Intents and Intent Filters
  7. proguard.cfg 配置文件
  8. android pull解析XML文件
  9. android的textView周围添加图片
  10. mipmap 目录和drawable 目录有什么区别