Android应用因共享偏好而崩溃

时间:2011-06-07 10:03:21

标签: android android-activity sharedpreferences switching

在我的应用的第一个活动中,在开始时我正在检查SharedPreferrence是否包含某些值。如果它为null,则打开第一个活动,如果不是,我想打开我的应用程序的第二个活动。

以下是我的代码的一部分。

SharedPreferences prefs = this.getSharedPreferences( "idValue", MODE_WORLD_READABLE );
public void onCreate(Bundle savedInstanceState)
{       
   super.onCreate(savedInstanceState);  
   setContentView(R.layout.login);
  if(prefs.getString("idValue", "")==null)
    {
        userinfo();
    }
    else
    {
        Intent myIntent = new Intent(getBaseContext(), Add.class);
    startActivityForResult(myIntent, 0);
    }
}

当我在logcat中检查时,它在下一行显示错误

但是当第一个活动被打开时我的应用程序崩溃了

 SharedPreferences prefs = this.getSharedPreferences( "idValue", MODE_WORLD_READABLE );

以下是我的logcat详细信息......

AndroidRuntime(5747): Uncaught handler: thread main exiting due to uncaught exception
AndroidRuntime(5747): java.lang.RuntimeException: Unable to instantiate activity ComponentInfo{com.gs.cc.sp/com.gs.cc.sp.UserInfo}: java.lang.NullPointerException
AndroidRuntime(5747): Caused by: java.lang.NullPointerException
AndroidRuntime(5747):     at android.content.ContextWrapper.getSharedPreferences(ContextWrapper.java:146)
AndroidRuntime(5747):     at com.gs.cc.sp.UserInfo.<init>(UserInfo.java:62)
AndroidRuntime(5747):     at java.lang.Class.newInstanceImpl(Native Method)
AndroidRuntime(5747):     at java.lang.Class.newInstance(Class.java:1479)
AndroidRuntime(5747):     at android.app.Instrumentation.newActivity(Instrumentation.java:1021)
AndroidRuntime(5747):     at android.app.ActivityThread.performLaunchActivity(ActivityThread.java:2409)

请朋友告诉我哪里出错了

2 个答案:

答案 0 :(得分:6)

在启动之前,您正在访问类的当前实例this,这就是为什么会出现nullpointer异常。

SharedPreferences prefs = null;
public void onCreate(Bundle savedInstanceState)
{       
   super.onCreate(savedInstanceState);  
   setContentView(R.layout.login);
prefs = this.getSharedPreferences( "idValue", MODE_WORLD_READABLE );
  if(prefs.getString("idValue", "")==null)
    {
        userinfo();
    }
    else
    {
        Intent myIntent = new Intent(getBaseContext(), Add.class);
    startActivityForResult(myIntent, 0);
    }
}

答案 1 :(得分:0)

您没有说,但我会假设您在致电userinfo()时初始化了一些用户信息。

您需要了解的关于prefs.getString的内容是它永远不会返回null。你提供的第二个参数定义了如果首选项不存在它将返回的值 - 所以在你的例子中你应该使用:

if ( prefs.getString ( "idValue", "" ).equals ( "" ) )
{
    userinfo();
}