Check for Android 6.0 for word iterator work around

This commit is contained in:
M66B
2020-09-13 20:48:05 +02:00
parent eb7fde9945
commit 75fe7d0ec9
2 changed files with 3 additions and 18 deletions

View File

@@ -111,9 +111,9 @@ public class FixedTextView extends AppCompatTextView {
@Override
public boolean dispatchTouchEvent(MotionEvent event) {
// https://issuetracker.google.com/issues/37068143
if ((BuildConfig.DEBUG || Build.VERSION.SDK_INT <= Build.VERSION_CODES.M) &&
hasSelection() &&
event.getActionMasked() == MotionEvent.ACTION_DOWN) {
if (event.getActionMasked() == MotionEvent.ACTION_DOWN &&
Build.VERSION.RELEASE.equals("6.0") && hasSelection()) {
// Remove selection
CharSequence text = getText();
setText(null);
setText(text);