【Android】自定義控件讓TextView的drawableLeft與文本一塊兒居中顯示


前言html

 TextView的drawableLeft、drawableRight和drawableTop是一個經常使用、好用的屬性,能夠在文本的上下左右放置一個圖片,而不使用更加複雜佈局就能達到,我也經常喜歡用RadioButton的這幾個屬性實現不少效果,可是苦於不支持讓drawbleLeft與文本一塊兒居中,設置gravity爲center也無濟於事,終於有空研究了一下,這裏與你們一塊兒分享。canvas

 

聲明ide

歡迎轉載,請註明出處!佈局

博客園:http://www.cnblogs.com/spa

農民伯伯: http://www.cnblogs.com/over140/code

 

正文htm

1、效果圖blog

 

2、實現代碼 圖片

自定義控件get

/**
 * drawableLeft與文本一塊兒居中顯示
 * 
 * 
@author  農民伯伯
 * 
@see   http://www.cnblogs.com/over140/p/3464348.html
 * 
 
*/
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用法一致,無需額外增長屬性。

 

2013-12-13 注意,drawableRight無論用!感謝網友提醒,後續有進展了再更新文章。 

 

結束

那些讓你難受的技術問題必定要找時間想辦法擺平TA! 

相關文章
相關標籤/搜索