TextView 富文本學習六 - 設置了ClickableSpan導致內存泄漏

**

抱歉,這裏的NoCopySpan慎用,可能有崩潰風險。

**

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);
發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章