换行后居中显示的textview

StaticLayout
public class CenterText extends TextView {
    /**
     * StaticLayout是android中处理文字换行的一个工具类,StaticLayout已经实现了文本绘制换行处理,
     * TextView也是调用StaticLayout来实现换行的。
     */
    private StaticLayout myStaticLayout;
    private TextPaint tp;


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


    @Override
    protected void onSizeChanged(int w, int h, int oldw, int oldh) {
        super.onSizeChanged(w, h, oldw, oldh);
        initView();
    }


    /**
     * StaticLayout
     * 传入:需要分行的字符串、画笔、宽度,字符串超出宽度会自动换行、layout的对其方式、
     * 相对行间距(如1.0f标示行间距为1倍的字体高度)、在基础行距上增加多少(实际行间距等于两者的和)、
     *
     *  Layout.Alignment.ALIGN_CENTER 居中显示
     *  Layout.Alignment.ALIGN_OPPOSITE 靠右显示
     *  Layout.Alignment.ALIGN_NORMAL 正常显示
     *
     */
    private void initView() {
        tp = new TextPaint(Paint.ANTI
  • 1
    点赞
  • 1
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值