3 messages in com.googlegroups.android-developersRe: I can´t open a new screen
FromSent OnAttachments
agarro29 Nov 2007 02:09 
gpsmobiler29 Nov 2007 03:54 
agarro29 Nov 2007 08:22 
Subject:Re: I can´t open a new screen
From:gpsmobiler (gpsm@gmail.com)
Date:11/29/2007 03:54:37 AM
List:com.googlegroups.android-developers

On Nov 29, 9:10 pm, agarro <garr@gmail.com> wrote:

i call the Activity in my code with:

Intent myIntent = new Intent(); myIntent.setClassName("org.garro", "Lista"); startActivity(myIntent);

Is anybody can help me?

The way I've seen it done is like the following:

Intent intent = new Intent(); intent.setClass(this, org.garro.Lista.class); startActivity(intent);

Where 'this' is some valid Context, like an instance of an Activity that is initiating this new activity,