Android 自訂 TextView drawableTop 表徵圖與文字靠左對齊(效果圖)

來源:互聯網
上載者:User

標籤:des   android   style   blog   http   color   os   ar   java   

public class DrawableTopLeftTextView extends TextView {private Paint mPaint;private float fFontHeight;private Drawable[] drawables;private int leftMargin = 40; //TODO 這個要通過代碼擷取,不能寫入程式碼public DrawableTopLeftTextView(Context context, AttributeSet attrs, int defStyle) {super(context, attrs, defStyle);init();}public DrawableTopLeftTextView(Context context, AttributeSet attrs) {super(context, attrs);init();}public DrawableTopLeftTextView(Context context) {super(context);init();}private void init() {mPaint = getPaint();//mPaint.setTextSize(56.0f);mPaint.setColor(Color.parseColor("#cccccccc"));FontMetrics fm = mPaint.getFontMetrics();fFontHeight = (float) Math.ceil(fm.descent - fm.ascent);drawables = getCompoundDrawables();}@Overrideprotected void onDraw(Canvas canvas) {if (drawables != null) {Drawable drawable = drawables[1]; // topif (drawable != null) {final float textY = getY() + drawable.getIntrinsicHeight() + fFontHeight - 5;canvas.drawText(getText().toString(), 0, textY, mPaint);canvas.clipRect(drawable.getBounds());canvas.drawBitmap(getBitmap(drawable), getLeft()+leftMargin, getTop(), mPaint);drawable.draw(canvas);canvas.save();}}super.onDraw(canvas);}private final static Bitmap getBitmap(Drawable drawable){BitmapDrawable bd = (BitmapDrawable) drawable;return bd.getBitmap();}}


<com.bluetooth.light.widget.DrawableTopLeftTextView            android:id="@+id/signal_text"            android:layout_width="wrap_content"            android:layout_height="wrap_content"            android:layout_alignParentRight="true"            android:layout_marginRight="10dp"            android:drawableTop="@drawable/signal_logo"            android:text="@string/signal"            android:textColor="#cccccccc"            android:textSize="24sp" />




Android 自訂 TextView drawableTop 表徵圖與文字靠左對齊()

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.