我是靠谱客的博主 温婉柜子,最近开发中收集的这篇文章主要介绍Android TextView 设置删除线,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

百度了一下,大多数都是这样的:

textView.getPaint().setFlags(Paint.STRIKE_THRU_TEXT_FLAG);

但实际使用无效。后来换成Google搜索:

设置删除线代码:

textView.setPaintFlags(textView.getPaintFlags() | Paint.STRIKE_THRU_TEXT_FLAG);
取消删除线代码:

textView.setPaintFlags(textView.getPaintFlags() & (~Paint.STRIKE_THRU_TEXT_FLAG));
测试达到了期望的效果,Google就是强大。

查看TextView源代码:

/**
     * Sets flags on the Paint being used to display the text and
     * reflows the text if they are different from the old flags.
     * @see Paint#setFlags
     */
    @android.view.RemotableViewMethod
    public void setPaintFlags(int flags) {
        if (mTextPaint.getFlags() != flags) {
            mTextPaint.setFlags(flags);

            if (mLayout != null) {
                nullLayouts();
                requestLayout();
                invalidate();
            }
        }
    }

/**
     * @return the base paint used for the text.  Please use this only to
     * consult the Paint's properties and not to change them.
     */
    public TextPaint getPaint() {
        return mTextPaint;
    }

由代码可知,setPaintFlags()有刷新过程。而getPaint()返回TextPaint,此类继承于Paint,Paint.setFlags()是native函数,且TextPaint没有对其进行复写,无法进一步分析原因了。



最后

以上就是温婉柜子为你收集整理的Android TextView 设置删除线的全部内容,希望文章能够帮你解决Android TextView 设置删除线所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(38)

评论列表共有 0 条评论

立即
投稿
返回
顶部