0

我有这段代码,我试图在“InitialPreferences”活动中使用 sharedpreferences 保存一些持久性数据,然后“StartScreen”活动在应用程序下次启动时搜索保存的首选项,并将用户定向到“InitialPreferences”或“主要活动”。我的问题是数据没有被保存,我看不到问题,谁能指导我解决问题并告诉我我做错了什么?

谢谢

开始屏幕活动:

 public class StartScreen extends Activity {

CountDownTimer waitTimer;
public static final String APP_PREFERENCES = "AppPrefs";
SharedPreferences settings; 
SharedPreferences.Editor prefEditor;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_start_screen);

     settings = getSharedPreferences(APP_PREFERENCES, MODE_PRIVATE);
     //    prefEditor = settings.edit();

     waitTimer = new CountDownTimer(5000, 300) {

       public void onTick(long millisUntilFinished) {
          //called every 300 milliseconds, which could be used to
          //send messages or some other action
       }
       public void onFinish() {
          //After 5000 milliseconds (5 sec) finish current 
          //if you would like to execute something when time finishes 
           getPreferences();
       }
     }.start();
}   

private void getPreferences() {
    // TODO Auto-generated method stub
    String UserName = settings.getString("UserName", "");

    if (UserName != null) {
        // the key does not exist
                Intent intent=new           Intent(StartScreen.this,InitialPreferences.class);
                startActivity(intent);
            }
    if (UserName.equals("UserName")){
        // handle the value
                Intent intent=new Intent(StartScreen.this,MainActivity.class);
                startActivity(intent);
     }       
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
    // Inflate the menu; this adds items to the action bar if it is present.
    getMenuInflater().inflate(R.menu.start_screen, menu);
    return true;
}
}

InitialPreferences 活动:

  public class InitialPreferences extends Activity implements OnClickListener {

EditText editText1;
Button button1;
TextView textView1;
RadioGroup radioGroup;
RadioButton radioPosistionButton;   

public static final String APP_PREFERENCES = "AppPrefs";
SharedPreferences settings; 
SharedPreferences.Editor prefEditor;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.initial_preferences);

    textView1 = (TextView)findViewById(R.id.textView1);
    editText1 = (EditText)findViewById(R.id.editText1);
    button1 = (Button)findViewById(R.id.button1); 
    radioGroup = (RadioGroup) findViewById(R.id.radioGroup);  

    settings = getSharedPreferences(APP_PREFERENCES, MODE_PRIVATE);
        prefEditor = settings.edit();

    LoadPreferences();  
}   

@Override
 public void onClick(View v) {

SavePreferences();
LoadPreferences();
}

 private void SavePreferences() {
// TODO Auto-generated method stub

String Uname_input = editText1.getText().toString();
int checkedButton = radioGroup.getCheckedRadioButtonId();
prefEditor.clear();
prefEditor.putString("UserName", Uname_input);
prefEditor.putInt("posistion", checkedButton);
prefEditor.apply();
prefEditor.commit();
}

 private void LoadPreferences(){

String UserName = settings.getString("UserName", "");
editText1.setText( UserName + "" );
Toast.makeText(getApplicationContext(), UserName,   Toast.LENGTH_SHORT).show();
}
}
4

1 回答 1

1

你的第一个问题是这(UserName != null)总是正确的。你得到UserNamewith String UserName = settings.getString("UserName", "");,它将提供一个空字符串的默认值。如果您希望设置在未找到首选项时返回 null,则应调用settings.getString("UserName", null).

您的第二个问题是您从不调用活动setOnClickListener(this)中的任何视图InitialPreferences。因此onClick()永远不会被调用,也不会发生任何事情。我假设你想打电话button1.setOnClickListener(this)onCreate()

于 2013-08-01T19:32:29.720 回答