I read this tutorial and using code from it to implement ScoreLoop service in my Game. And submiting score working fine, but show other android activity or simple Toast message are crashes with NullPointer error.
Crashes in line:
Intent intent = new Intent(mContext, EntryScreenActivity.class);
and in:
Toast.makeText(mContext, "Refreshing scores", Toast.LENGTH_SHORT).show();
In debug mode i saw that mContext is not null
Where is error and how fix it?
LogCat:
08-22 17:54:27.329: E/AndroidRuntime(15468): java.lang.NullPointerException 08-22 17:54:27.329: E/AndroidRuntime(15468): at android.content.ContextWrapper.getResources(ContextWrapper.java:81) 08-22 17:54:27.329: E/AndroidRuntime(15468): at android.widget.Toast.<init>(Toast.java:92) 08-22 17:54:27.329: E/AndroidRuntime(15468): at android.widget.Toast.makeText(Toast.java:233) 08-22 17:54:27.329: E/AndroidRuntime(15468): at com.masterofcode.android.slingshot.ActionResolverAndroid$3.run(ActionResolverAndroid.java:46) 08-22 17:54:27.329: E/AndroidRuntime(15468): at android.os.Handler.handleCallback(Handler.java:605) 08-22 17:54:27.329: E/AndroidRuntime(15468): at android.os.Handler.dispatchMessage(Handler.java:92) 08-22 17:54:27.329: E/AndroidRuntime(15468): at android.os.Looper.loop(Looper.java:137) 08-22 17:54:27.329: E/AndroidRuntime(15468): at android.app.ActivityThread.main(ActivityThread.java:4424) 08-22 17:54:27.329: E/AndroidRuntime(15468): at java.lang.reflect.Method.invokeNative(Native Method) 08-22 17:54:27.329: E/AndroidRuntime(15468): at java.lang.reflect.Method.invoke(Method.java:511) 08-22 17:54:27.329: E/AndroidRuntime(15468): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784) 08-22 17:54:27.329: E/AndroidRuntime(15468): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551) 08-22 17:54:27.329: E/AndroidRuntime(15468): at dalvik.system.NativeStart.main(Native Method)
========================================================================
public class ActionResolverAndroid implements ActionResolver {
Handler uiThread;
BumbleAndroid mContext; //Your class here which extends AndroidApplication
ScoreloopHandler handler;
public ActionResolverAndroid(BumbleAndroid mContext) {
uiThread = new Handler(); //This binds the handler to the "main" thread, see documentation of handler
this.mContext = mContext;
handler = new ScoreloopHandler(mContext);
}
}
In this way I getting mContext