I started using ACRA for my Android projects, but there's a repeated error in the document that I cannot reproduce nor find where does it come from, this is the stackTrace:

java.lang.IndexOutOfBoundsException: charAt: -2 < 0
    at android.text.SpannableStringBuilder.charAt(SpannableStringBuilder.java:110)
    at android.text.TextUtils.getCapsMode(TextUtils.java:1573)
    at android.view.inputmethod.BaseInputConnection.getCursorCapsMode(BaseInputConnection.java:273)
    at android.widget.TextView.onCreateInputConnection(TextView.java:4492)
    at android.view.inputmethod.InputMethodManager.startInputInner(InputMethodManager.java:942)
    at android.view.inputmethod.InputMethodManager.checkFocus(InputMethodManager.java:1114)
    at android.view.inputmethod.InputMethodManager.isActive(InputMethodManager.java:539)
    at android.widget.TextView.onDraw(TextView.java:4020)
    at android.view.View.draw(View.java:6535)
    at android.view.ViewGroup.drawChild(ViewGroup.java:1531)
    at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1258)
    at android.view.ViewGroup.drawChild(ViewGroup.java:1529)
    at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1258)
    at android.view.View.draw(View.java:6538)
    at android.view.ViewGroup.drawChild(ViewGroup.java:1531)
    at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1258)
    at android.view.View.draw(View.java:6641)
    at android.widget.FrameLayout.draw(FrameLayout.java:352)
    at android.view.ViewGroup.drawChild(ViewGroup.java:1531)
    at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1258)
    at android.view.View.draw(View.java:6538)
    at android.view.ViewGroup.drawChild(ViewGroup.java:1531)
    at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1258)
    at android.view.View.draw(View.java:6538)
    at android.widget.FrameLayout.draw(FrameLayout.java:352)
    at android.view.ViewGroup.drawChild(ViewGroup.java:1531)
    at android.view.ViewGroup.dispatchDraw(ViewGroup.java:1258)
    at android.view.View.draw(View.java:6538)
    at android.widget.FrameLayout.draw(FrameLayout.java:352)
    at com.android.internal.policy.impl.PhoneWindow$DecorView.draw(PhoneWindow.java:1830)
    at android.view.ViewRoot.draw(ViewRoot.java:1349)
    at android.view.ViewRoot.performTraversals(ViewRoot.java:1114)
    at android.view.ViewRoot.handleMessage(ViewRoot.java:1633)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:123)
    at android.app.ActivityThread.main(ActivityThread.java:4363)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:521)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:868)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:626)
    at dalvik.system.NativeStart.main(Native Method)

Any ideas what's causing that? I don't even know what Activity was creating that. I have 33 errors reported and probably half are that error.

Edit: layouts

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android" android:orientation="vertical"
    android:layout_height="fill_parent" android:layout_width="fill_parent"
    style="@style/background">
    ...
    <include android:id="@+id/notifications" android:layout_width="fill_parent" android:layout_height="wrap_content" layout="@layout/notifications"/>
</FrameLayout>

and the notifications layout:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
             android:layout_width="fill_parent" android:layout_height="fill_parent" 
          android:id="@+id/frameLayout" android:layout_gravity="bottom">

 <SlidingDrawer android:id="@+id/slideNotifications" android:orientation="vertical"
             android:handle="@+id/handle" android:content="@+id/content"
             android:layout_height="wrap_content" android:layout_width="fill_parent">

    <RelativeLayout android:id="@id/handle"
                android:layout_width="fill_parent" android:layout_height="wrap_content"
                android:background="@drawable/slide_handler">
    ...
    </RelativeLayout>
 <LinearLayout android:layout_width="fill_parent"
            android:layout_height="wrap_content" 
            android:id="@id/content"
            android:orientation="vertical" 
            android:background="@color/bgWeb">
     ...
 </LinearLayout>
 </SlidingDrawer>
</FrameLayout>
link|improve this question

1  
Hard to locate the issue looking at this stacktrace, all you can do is to check your code for the class objects mentioned in the log. – Egor Sep 1 '11 at 11:33
I was thinking on that, but all the classes are from Android, nothing from my project. I also looked at the layouts that with "FrameLayout" and I cannot see anything "not standard" (with standard I mean the elements only have the basic parameters, width/height/color/gravity) – SERPRO Sep 1 '11 at 12:01
Do you have any complex or deeply-nested layouts in your app? – Dave Sep 1 '11 at 12:21
Well I have a layout that includes another layout (slideDrawer). I'll edit the question with that. – SERPRO Sep 1 '11 at 12:53
1  
Also, since the exception is so bare of reference to your app, maybe you could try adding more debug info in a future update to help track down this bug. You can use ACRA's putCustomData method for that - you could use this to record what the last Activity that was created, for example. – Dave Sep 1 '11 at 13:00
show 1 more comment
feedback

1 Answer

up vote 0 down vote accepted

I found the Class with the error thanks to @Dave comment

Adding putCustomData in my activies

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.