Android 自定义控件TextView 居中 Android 让自定义TextView的drawableLeft与文本一起居中

软件发布|下载排行|最新软件

当前位置:首页IT学院IT技术

Android 自定义控件TextView 居中 Android 让自定义TextView的drawableLeft与文本一起居中

  2021-03-22 我要评论
想了解Android 让自定义TextView的drawableLeft与文本一起居中的相关内容吗,在本文为您仔细讲解Android 自定义控件TextView 居中的相关知识和一些Code实例,欢迎阅读和指正,我们先划重点:Android,自定义控件,Android,自定义TextView,Android,自定义控件居中问题,下面大家一起来学习吧。

前言

  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与文本一起居中显示的问题解决,需要的朋友可以参考下。

Copyright 2022 版权所有 软件发布 访问手机版

声明:所有软件和文章来自软件开发商或者作者 如有异议 请与本站联系 联系我们