Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android 讓自定義TextView的drawableLeft與文本一起居中

Android 讓自定義TextView的drawableLeft與文本一起居中

編輯:關於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與文本一起居中顯示的問題解決,需要的朋友可以參考下。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved