2015-11-20 26 views
9

Napotkałem awarię, odznaczając tekst w wybieralnym Androidzie TextView. Dzieje się tak, gdy wybieram TextView i ustawię LinkMovementMethod.IllegalArgumentException podczas zaznaczania tekstu w Androidzie TextView

IllegalArgumentException in TextView

Wydaje się, że to bug wewnątrz Androida.

java.lang.IllegalArgumentException: Invalid offset: -1. Valid range is [0, 10562] 
    at android.text.method.WordIterator.checkOffsetIsValid(WordIterator.java:380) 
    at android.text.method.WordIterator.isBoundary(WordIterator.java:101) 
    at android.widget.Editor$SelectionStartHandleView.positionAtCursorOffset(Editor.java:4260) 
    at android.widget.Editor$HandleView.updatePosition(Editor.java:3708) 
    at android.widget.Editor$PositionListener.onPreDraw(Editor.java:2507) 
    at android.view.ViewTreeObserver.dispatchOnPreDraw(ViewTreeObserver.java:944) 
    at android.view.ViewRootImpl.performTraversals(ViewRootImpl.java:2055) 
    at android.view.ViewRootImpl.doTraversal(ViewRootImpl.java:1107) 
    at android.view.ViewRootImpl$TraversalRunnable.run(ViewRootImpl.java:6013) 
    at android.view.Choreographer$CallbackRecord.run(Choreographer.java:858) 
    at android.view.Choreographer.doCallbacks(Choreographer.java:670) 
    at android.view.Choreographer.doFrame(Choreographer.java:606) 
    at android.view.Choreographer$FrameDisplayEventReceiver.run(Choreographer.java:844) 
    at android.os.Handler.handleCallback(Handler.java:739) 
    at android.os.Handler.dispatchMessage(Handler.java:95) 
    at android.os.Looper.loop(Looper.java:148) 
    at android.app.ActivityThread.main(ActivityThread.java:5417) 
    at java.lang.reflect.Method.invoke(Native Method) 
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:726) 
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:616) 

Odpowiedz

10

Dzięki mariotaku za odpowiedź. Z jakiegoś powodu to nie ja sam wybrałbym tekst w moim TextView. Zmieniłem go trochę, aby uruchomić tylko pracę po wybraniu niektórych znaków. Wydaje się teraz działać świetnie!

@Override 
public boolean dispatchTouchEvent(MotionEvent event) { 
    // FIXME simple workaround to https://code.google.com/p/android/issues/detail?id=191430 
    int startSelection = getSelectionStart(); 
    int endSelection = getSelectionEnd(); 
    if (startSelection != endSelection) { 
     if (event.getActionMasked() == MotionEvent.ACTION_DOWN) { 
      final CharSequence text = getText(); 
      setText(null); 
      setText(text); 
     } 
    } 
    return super.dispatchTouchEvent(event); 
} 
+0

To właśnie uratowało mi życie! Wielkie dzięki! – Arreis

+0

Mam również do czynienia z podobną kwestią, Gdzie muszę zachować tę metodę. – vijaypalod

+1

hej @ mVJ. Musisz rozszerzyć TextView jak poniżej odpowiedź mariotaku. Zasadniczo spójrz na jego odpowiedź, ale zastąp w niej metodę dispatchTouchEvent. Byłby to nowy plik w twoim projekcie o nazwie FixedTextView (lub jakkolwiek by go nazwał) i odnosisz się do niego zamiast domyślnego TextView – TrevorSStone

3

znalazłem Android skasuje wybór TextView Dzwoniąc setText, więc tutaj jest proste obejście tego problemu.

public class FixedTextView extends TextView { 

    public FixedTextView(final Context context) { 
     super(context); 
    } 

    public FixedTextView(final Context context, final AttributeSet attrs) { 
     super(context, attrs); 
    } 

    public FixedTextView(final Context context, final AttributeSet attrs, final int defStyle) { 
     super(context, attrs, defStyle); 
    } 

    @Override 
    public boolean dispatchTouchEvent(MotionEvent event) { 
     // FIXME simple workaround to https://code.google.com/p/android/issues/detail?id=191430 
     if (event.getActionMasked() == MotionEvent.ACTION_DOWN) { 
      final CharSequence text = getText(); 
      setText(null); 
      setText(text); 
     } 
     return super.dispatchTouchEvent(event); 
    } 

} 
0

Oto proste i doskonale działające obejście. Powinieneś umieścić to w swojej klasie aktywności:

@Override 
public void onActionModeStarted(ActionMode mode) { 
    super.onActionModeStarted(mode); 
    yourTextView.setMovementMethod(ArrowKeyMovementMethod.getInstance()); 
} 

@Override 
public void onActionModeFinished(ActionMode mode) { 
    super.onActionModeFinished(mode); 
    yourTextView.setMovementMethod(LinkMovementMethod.getInstance()); 
} 
Powiązane problemy