前言
TextVIEw的drawableleft、drawableRight和drawabletop是一个常用、好用的属性,可以在文本的上下左右放置一个图片,而不使用更加复杂布局就能达到,我也常常喜欢用Radiobutton的这几个属性实现很多效果,但是苦于不支持让drawbleleft与文本一起居中,设置gravity为center也无济于事,终于有空研究了一下,这里与大家一起分享。
正文
一、效果图
二、实现代码
自定义控件
/** * drawableleft与文本一起居中显示 * * */public class DrawableCenterTextVIEw extends TextVIEw { public DrawableCenterTextVIEw(Context context,AttributeSet attrs,int defStyle) { super(context,attrs,defStyle); } public DrawableCenterTextVIEw(Context context,AttributeSet attrs) { super(context,attrs); } public DrawableCenterTextVIEw(Context context) { super(context); } @OverrIDe protected voID onDraw(Canvas canvas) { Drawable[] drawables = getCompoundDrawables(); if (drawables != null) { Drawable drawableleft = drawables[0]; if (drawableleft != null) { float textWIDth = getPaint().measureText(getText().toString()); int drawablepadding = getCompoundDrawablepadding(); int drawableWIDth = 0; drawableWIDth = drawableleft.getIntrinsicWIDth(); float bodyWIDth = textWIDth + drawableWIDth + drawablepadding; canvas.translate((getWIDth() - bodyWIDth) / 2,0); } } super.onDraw(canvas); }}
总结:和普通TextVIEw用法一致,无需额外增加属性,drawableRight不能用。
以上就是对自定义控件让TextVIEw的drawableleft与文本一起居中显示的问题解决,需要的朋友可以参考下。
总结以上是内存溢出为你收集整理的Android 让自定义TextView的drawableLeft与文本一起居中全部内容,希望文章能够帮你解决Android 让自定义TextView的drawableLeft与文本一起居中所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)