文字和自定義圖片居中的RadioButton

項目中用到的一個小控件,自帶的控件滿足不了需求,只能自定義了。
直接看圖片:
這裏寫圖片描述

<com.yjy.yijinyi.view.DrawableCenterRadioButton
                android:layout_marginTop="20dp"
                android:id="@+id/dd"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:checked="true"
                android:text="RadioButton"
                android:textColor="@color/text_color"
                android:button="@null"
                android:drawableLeft="@drawable/selector_high_evaluation_radiobutton"
                />
            <RadioButton
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:text="RadioButton"
                android:textColor="@color/text_color"
                android:gravity="center"
                android:button="@null"
                android:checked="true"
                android:drawableLeft="@drawable/selector_high_evaluation_radiobutton"
                />
        </LinearLayout>

然後就是java代碼:

package com.yjy.yijinyi.view;

import android.content.Context;
import android.graphics.Canvas;
import android.graphics.drawable.Drawable;
import android.util.AttributeSet;
import android.widget.RadioButton;

/**
 * Created by 張先生 on 2016/1/22.
 *
 * 自定義RadioButton
 */
public class DrawableCenterRadioButton extends RadioButton {
    public DrawableCenterRadioButton(Context context) {
        super(context);
    }

    public DrawableCenterRadioButton(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public DrawableCenterRadioButton(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @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);
    }

}

直接粘貼複製就可以使用了,別忘了更換包名。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章