美文网首页
TextView 富文本学习六 - 设置了ClickableSp

TextView 富文本学习六 - 设置了ClickableSp

作者: sliencexiu | 来源:发表于2019-08-03 07:09 被阅读0次

    1 设置ClickableSpan导致内存泄漏

     spannable.setSpan(new ClickableSpan() {
                           @Override
                           public void onClick(View widget) {
                              
                           }
    
                           public void updateDrawState(TextPaint ds) {
                               ds.setColor(mContext.getResources().getColor();
                               ds.setUnderlineText(false);
                           }
                       }, start, start + tagNameMatch.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    

    导致内存泄漏的原因:
    https://stackoverflow.com/questions/28539216/android-textview-leaks-with-setmovementmethod

    Using ClickableSpan may still cause leaks even on versions higher than KitKat. If you look into implementation of the ClickableSpan you will notice that it doesn't extend NoCopySpan, so it leaks in onSaveInstanceState() like described in @DmitryKorobeinikov and @ChrisHorner answers. So the solution would be to create a custom class that extends ClickableSpan and NoCopySpan.

    解决办法也来自上面的网址:

    public static class NoRefCopySpan  extends ClickableSpan implements NoCopySpan{
    
            @Override
            public void onClick(@NonNull View widget) {
    
            }
    
            @Override
            public void updateDrawState(TextPaint ds) {
               super.updateDrawState(ds);
            }
    
        }
    

    使用

             spannable.setSpan(new NoRefCopySpan() {
                      @Override
                      public void onClick(View widget) { 
                      }
        
                     public void updateDrawState(TextPaint ds) {
                                 
                    }
                    }, start, start + tagNameMatch.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    

    相关文章

      网友评论

          本文标题:TextView 富文本学习六 - 设置了ClickableSp

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