Does anyone know why Eclipse chokes when I try to jump around in Android 
source?

I have this method in my Activity:

@Override
protected void onResume() {
super.onResume();
mView.onResume();
}

So, I jumped into onResume of mView (GLSurfaceView):


    public void onResume() {
        mGLThread.onResume();
    }

So then I try to jump to the declaration of mGLThread (which is right in 
GLSurfaceView at the bottom of the file).

However, Eclipse won't do it.

It says "Current text selection cannot be opened in an editor"

Any ideas why this doesn't work?

<https://lh5.googleusercontent.com/-tllgem2rvjo/UQasPyfXnUI/AAAAAAAAAK4/jD7Urk4lCpw/s1600/err2.png>

-- 
-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
--- 
You received this message because you are subscribed to the Google Groups 
"Android Developers" group.
To unsubscribe from this group, send email to 
android-developers+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to