Please help me out. I am trying to call an activity from another
activity.But while running the code it is giving me an error as:-
04-04 23:28:11.778: WARN/InputManagerService(59): Window already
focused, ignoring focus gain of:
com.android.internal.view.iinputmethodclient$stub$pr...@43ca4848
My code is
public class Pwaclient extends Activity {
public void onCreate(final Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
Intent i=new Intent(v.getContext(),Album.class);
startActivity(i);
}}
public class Album extends ListActivity{
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
try
{
finish();
}catch(Exception e){e.printStackTrace();}
}
}
Please do reply. I am even not able to apply method setContentView()
in Album's class onCreate().
--
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
To unsubscribe, reply using "remove me" as the subject.