国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 系統 > Android > 正文

Android自定義TextView實現drawableLeft內容居中

2019-12-12 02:38:48
字體:
來源:轉載
供稿:網友

如何實現使用TextView的DrawableLeft使圖片和文字居中顯示呢???

代碼如下:

1.首先自定義一個類,繼承TextView

package com.test.signcalendar.weight;import android.content.Context;import android.graphics.Canvas;import android.graphics.drawable.Drawable;import android.util.AttributeSet;import android.widget.TextView;/** * 自定義TextView,實現drawableLeft可以和文字一起居中 * @author HLQ * @createtime 2016年3月20日04:14:36 * */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);  }}

2.之后在xml布局文件中直接引用即可。。。

<com.test.signcalendar.weight.DrawableCenterTextView          android:id="@+id/textView1111"          android:layout_width="0dp"          android:layout_height="wrap_content"          android:layout_weight="1"          android:drawableLeft="@drawable/fmhp_mine_health_plan_signcalendar_finish_status_bg"          android:drawablePadding="5dp"http://給圖片和文字之間設置填充          android:text="都完成"          android:textColor="#333333"          android:textSize="12sp" />

3。ok實現效果 如下。。。

感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表
主站蜘蛛池模板: 巴中市| 宝丰县| 和硕县| 宜兰县| 英山县| 讷河市| 左权县| 石嘴山市| 舟曲县| 台江县| 石家庄市| 南澳县| 永州市| 河北区| 木兰县| 朝阳市| 招远市| 南郑县| 斗六市| 泽州县| 永年县| 时尚| 合作市| 江孜县| 中方县| 读书| 开封市| 肇州县| 竹北市| 怀远县| 泰宁县| 游戏| 建昌县| 民县| 金阳县| 台中县| 和林格尔县| 通渭县| 临邑县| 张家口市| 临泉县|