Android自定义View去除TextView的Padding值
程序员文章站
2022-05-30 20:26:34
...
在业务中需要对齐一个大字体和小字体
方案一:利用ImageView也可以实现这个对齐效果,但是如果同比例缩放的话,它们之间的间距会被拉开,不美观了。
方案二:可以利用TextViewWithoutPaddings,这种对齐方式对得很齐,还有一个优点就是同比例缩放的时候后,同样可以对得很齐。
以下是代码和效果图:
/**
* Created by lilea on 2017/7/31.
*/
public class TextViewWithoutPaddings extends TextView {
private final Paint mPaint = new Paint();
private final Rect mBounds = new Rect();
public TextViewWithoutPaddings(Context context) {
super(context);
}
public TextViewWithoutPaddings(Context context, @Nullable AttributeSet attrs) {
super(context, attrs);
}
public TextViewWithoutPaddings(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
super(context, attrs, defStyleAttr);
}
public TextViewWithoutPaddings(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) {
super(context, attrs, defStyleAttr, defStyleRes);
}
@Override
protected void onDraw(@NonNull Canvas canvas) {
final String text = calculateTextParams();
final int left = mBounds.left;
final int bottom = mBounds.bottom;
mBounds.offset(-mBounds.left, -mBounds.top);
mPaint.setAntiAlias(true);
mPaint.setColor(getCurrentTextColor());
canvas.drawText(text, -left, mBounds.bottom - bottom, mPaint);
}
@Override
protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
super.onMeasure(widthMeasureSpec, heightMeasureSpec);
calculateTextParams();
setMeasuredDimension(mBounds.right - mBounds.left, -mBounds.top + mBounds.bottom);
}
private String calculateTextParams() {
final String text = getText().toString();
final int textLength = text.length();
mPaint.setTextSize(getTextSize());
mPaint.getTextBounds(text, 0, textLength, mBounds);
if (textLength == 0) {
mBounds.right = mBounds.left;
}
return text;
}
}
用法直接用TextView继承该view,在布局文件中替换TextView即可。
图一
图二
图一是去除padding值的效果(TextViewWithoutPaddings ),图二是直接利用TextView。
上一篇: 自定义view的简单使用
下一篇: Android 自定义View简单归纳