密码保护我的应用程序

时间:2014-01-22 19:20:36

标签: android button crash passwords

我是JAVA和Android开发的新手,我正在尝试密码保护我的应用程序。 我试图这样做,以便每当用户按下提交按钮时,如果密码正确,它将启动一个新活动。

到目前为止,我有以下代码:

我的按钮:

 <Button
          android:id="@+id/button_enterpassword"
          android:layout_width="wrap_content"
          android:layout_height="wrap_content"
          android:layout_below="@+id/text_enterpassword"
          android:layout_centerHorizontal="true"
          android:layout_marginTop="262dp"
          android:onClick="openMenu"
          android:textSize="60sp"
          android:text="@string/button_confirm"
           />

我的活动:

 // This is the method called when the user presses the button 
public void openMenu(View view) {
    MyMethods compareText = new MyMethods();
    boolean same = compareText.compareText();
    if(same = true){ 
    MyMethods openActivity = new MyMethods();
    openActivity.callActivity();
    }
}}

我的MyMethods课程:

 public class MyMethods extends Activity {

public void callActivity() {

     Intent intent = new Intent(this , MainMenu.class);
        startActivity(intent);
}

public boolean compareText() {
    boolean same = false;
    //assigning the name sumbitButton to the button from the UI
    //Button sumbitButton = (Button) findViewById(R.id.button_enterpassword);
    //Defines when the user has selected the button
   // sumbitButton.setOnClickListener(new View.OnClickListener() {        
        //public void onClick(View v){
        //assigning the name passwordEditText to the text inside the textbox
        EditText passwordEditText = (EditText)         

  findViewById(R.id.text_enterpassword);
        if(passwordEditText.getText().toString().equals("Test")){
            same = true;

        }
        return same;
        }

}

然而,每当我按下按钮时,我的程序就会崩溃。

为你的帮助干杯!

1 个答案:

答案 0 :(得分:0)

有几点需要注意:

  1. MyMethods正在扩展活动,但您使用它的方式是unorthodox
  2. 在openMenu()中,你的比较是错误的,你错过了一个=

    if (same = true) { //<---------- should be if (same == true) or if (same)
    
  3. 从MyMethods中删除你的callActivity()和compareText(),并在你将使用它们的类中声明它们,即在你有openMenu()的类中。我还将compareText()重命名为isPasswordValid(),以使其更清晰。

  4. 将openMenu()重写为:

    public void openMenu(View view) {
        if (isPasswordValid()) {
            callActivity();
        }
    }
    
  5. 您还可以重写compareText():

    public boolean isPasswordValid() {
        EditText passwordEditText = (EditText) findViewById(R.id.text_enterpassword);
    
        return passwordEditText.getText().toString().equals("Test");
    }
    
  6. 此外,由于您要启动另一项活动,请确保在AndroidManifest中声明它。