0

我一直在开发一个短信应用程序,我想为用户提供一些私人空间......只有在用户输入正确的用户名和密码时才能访问......我怎样才能做到这一点......?有人告诉我,我可以使用,AccountManager但我怎么能把它和my class or activity我要输入密码的地方联系起来……

public class PrivateSpace extends Activity{

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);

任何帮助将不胜感激...

4

1 回答 1

0

我认为可以通过使用共享首选项轻松实现..像这样存储您的应用程序的密码..

  SharedPreferences settings = getSharedPreferences("my_shared_pref", 0);
  String password = settings.getString("password", "empty");
  if(password == "empty"){

   //store the value in your edittext as password

   }
 else{
    //if string in edittext matches with the password value.. let the user enter the activity.. else make a toast of wrong password..
 }
于 2012-04-15T10:23:20.267 回答