kopia lustrzana https://github.com/TeamNewPipe/NewPipe
rodzic
8080c32b1f
commit
9b1861417c
|
@ -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);
|
||||
}
|
||||
|
|
Ładowanie…
Reference in New Issue