【Android开源库】图片文字会居中的RadioButton,自带缩放效果

TabRadioButton for Android

APP开发中,底部菜单经常使用RadioButton来实现切换,但使用系统自带的RadioButton的话,你会发现图片和文字并没有完全居中,于是就有了TabRadioButton。

TabRadioButton只对 drawableLeftdrawableTop方向上的图片做了居中处理(这两个方向一般用的比较多)

主要功能:
  • 图片和文字居中
  • 可指定drawable的大小
  • 自带缩放动画效果,手指按下和松开时触发(需要开启)

Preview

screen.gif

Download

Gradle:

compile 'com.zaaach:tabradiobutton:1.0.2'

or Maven:


  com.zaaach
  tabradiobutton
  1.0.2
  pom

How to use

  1. TabRadioButton 添加图片时要用drawableLeftdrawableTop 这两个属性~
  2. 若需要动画效果,添加一行属性 trb_enable_animation="true" 即可启用缩放动画效果

     

attrs.xml 自定义的属性:


        
        
        
        
        
        
        
        

@style/TabRadioButtonWithText 内容如下:


Try it

:wink:

下载地址

https://github.com/zaaach/TabRadioButton 如果喜欢TabRadioButton,记得给个Star支持一下~

你可能感兴趣的:(【Android开源库】图片文字会居中的RadioButton,自带缩放效果)