简体   繁体   中英

Android EditText copy and paste from webpage, pastes formatted text

Please check the image below for reference. When I copy any text from webpage and paste it in Edittext in my app, Pasted text sometimes is already formatted and is different than default text. How can I keep pasted text to have default text style same as of Edittext.

在此处输入图片说明

Try removing spans in afterTextChanged()

public void afterTextChanged(Editable s)
{
    CharacterStyle[] toBeRemovedSpans = s.getSpans(0, s.length(),
                                                MetricAffectingSpan.class);
    for (int index = 0; index < toBeRemovedSpans.length; index++)
        s.removeSpan(toBeRemovedSpans[index]);
    }
}

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM