me and my partners are working on developing a pwa client for android
Am gettin an error while callin an activity from another activity.the
error is as follows:

WARN/InputManagerService(59): Window already focused, ignoring focus
gain of: com.android.internal.view.IInputMethodClient$Stub
$pr...@43d8fe28

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();}
}}

-- 
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.

Reply via email to