Add formatting removal on paste for search

Closes #5912
This commit is contained in:
Zhiheng Xu 2021-05-22 21:32:36 -04:00
parent 8080c32b1f
commit 9b1861417c
1 changed files with 7 additions and 0 deletions

View File

@ -9,6 +9,7 @@ import android.text.Editable;
import android.text.Html;
import android.text.TextUtils;
import android.text.TextWatcher;
import android.text.style.CharacterStyle;
import android.util.Log;
import android.view.KeyEvent;
import android.view.LayoutInflater;
@ -588,6 +589,12 @@ public class SearchFragment extends BaseListFragment<SearchInfo, ListExtractor.I
@Override
public void afterTextChanged(final Editable s) {
final CharacterStyle[] toBeRemovedSpans = s.getSpans(
0, s.length(), CharacterStyle.class
);
for (final CharacterStyle toBeRemovedSpan : toBeRemovedSpans) {
s.removeSpan(toBeRemovedSpan);
}
final String newText = searchEditText.getText().toString();
suggestionPublisher.onNext(newText);
}