That looks like the content of the stack from the eclipse debug
perspective.  What's the actual exception/error?  If you resume the run
(perhaps more than once) the complete stack with error will eventually get
dumped to the log.  You can then view it in the logcat window (a tab in the
right pane of the debug perspective).


On Mon, Jan 18, 2010 at 20:05, oregonduckman <oregonduck...@gmail.com>wrote:

> My code is calling setContentView(R.layout.someLayoutID); from an
> activities' onCreate method. The activity is launched with the
> following:
>
>                        Intent myIntent = new Intent(this, myClass.class);
>                        try
>                        {
>                                this.startActivity(myIntent);
>                        }
>                        catch(ActivityNotFoundException e)
>                        {
>                                e.toString();
>                        }
>
> The activity is declared in the manifest file as                <activity
> android:name=".myClass"></activity>
> The call to setContentView results in the following: (also, is it
> possible to setup Eclipse to find the source that the VM is referring
> to (instead of just getting the "source not found" error??
>
> DalvikVM[localhost:8656]
>        Thread [<3> main] (Suspended (exception RuntimeException))
>
>  ActivityThread.performLaunchActivity(ActivityThread$ActivityRecord,
> Intent) line: 2481
>
>  ActivityThread.handleLaunchActivity(ActivityThread$ActivityRecord,
> Intent) line: 2497
>                ActivityThread.access$2200(ActivityThread, ActivityThread
> $ActivityRecord, Intent) line: 119
>                ActivityThread$H.handleMessage(Message) line: 1848
>                ActivityThread$H(Handler).dispatchMessage(Message) line: 99
>                Looper.loop() line: 123
>                ActivityThread.main(String[]) line: 4338
>                Method.invokeNative(Object, Object[], Class, Class[], Class,
> int,
> boolean) line: not available [native method] [local variables
> unavailable]
>                Method.invoke(Object, Object...) line: 521
>                ZygoteInit$MethodAndArgsCaller.run() line: 860
>                ZygoteInit.main(String[]) line: 618
>                NativeStart.main(String[]) line: not available [native
> method]
>        Thread [<13> Binder Thread #2] (Running)
>        Thread [<11> Binder Thread #1] (Running)
>        Thread [<15> Binder Thread #3] (Running)
>
> --
> You received this message because you are subscribed to the Google
> Groups "Android Beginners" group.
>
> NEW! Try asking and tagging your question on Stack Overflow at
> http://stackoverflow.com/questions/tagged/android
>
> To unsubscribe from this group, send email to
> android-beginners+unsubscr...@googlegroups.com<android-beginners%2bunsubscr...@googlegroups.com>
> For more options, visit this group at
> http://groups.google.com/group/android-beginners?hl=en
>
>
-- 
You received this message because you are subscribed to the Google
Groups "Android Beginners" group.

NEW! Try asking and tagging your question on Stack Overflow at
http://stackoverflow.com/questions/tagged/android

To unsubscribe from this group, send email to
android-beginners+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-beginners?hl=en

Reply via email to