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:
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 Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to