美文网首页
android关于TextView文字优化

android关于TextView文字优化

作者: yunhen | 来源:发表于2018-07-20 22:56 被阅读211次

    可以使用android.support.v4.text.PrecomputedTextCompat来优化
    在api28的兼容包中才包含implementation 'com.android.support:appcompat-v7:28.+'
    或者使用AndroidX支持库

    PrecomputedText能够使 app 可以事先甚至在后台线程中执行文本布局最耗费时间的部分工作,以缓存布局结果,并返回宝贵的测量数据。然后 可以在 TextView 中设置 PrecomputedText.create(CharSequence, params) 的结果。这样,只有大约10%的工作留给 TextView 执行。

    相关文章

      网友评论

          本文标题:android关于TextView文字优化

          本文链接:https://www.haomeiwen.com/subject/xercmftx.html