Hi,

I've found a problem that may random FCs on some certain phones, Here's the
code snapshot:

Intent i = new Intent();
i.setClasss(this, MyService.class);
i.putExtra("tag", "test");
startService(i);

public void onStart(Intent intent, int startId ){
 String str = intent.getExtras().getString("tag");
...
}

Now if I try to get string that I passed in service startup routine, it will
random FCs, system will throw a Null Pointer Exception.

Does anyone has the same issue?

Alex

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to android-developers@googlegroups.com
To unsubscribe from this group, send email to
android-developers+unsubscr...@googlegroups.com
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to