Hallo,
ich habe folgendes Problem, ich möchte eine Passwort in meine App integrieren und dieses mit einem Button bestätigen. Ich habe bereits so angefangen:
btn4 = (Button) findViewById(R.id.button_popup);
btn4.setOnClickListener(this);
}
@Override
public void onClick(View v) {
startActivity (new Intent(this,Popup.class));
}
public void pushCheck(View view){
EditText text1 = (EditText)findViewById(editText3);
String message = null;
Intent intent = null;
if(text1.getText().toString().equals("pass")){
intent = new Intent(this,Popup.class);
}else{
message = "Leider Falsch";
}
text1.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);
Toast.makeText(this, message, Toast.LENGTH_LONG).show();
startActivity(intent);
}
Alles anzeigen
und
<EditText
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:inputType="textPassword"
android:background="#ffffff"
android:textColor="#000000"
android:ems="10"
android:id="@+id/editText3"
android:layout_centerVertical="true"
android:layout_centerHorizontal="true" />
<Button
android:text="Check"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:id="@+id/button_popup"
android:onClick="pushCheck"
android:layout_marginTop="23dp"
android:layout_below="@+id/editText3"
android:layout_centerHorizontal="true" />
Alles anzeigen
Problem ist egal welches Passwort ich eingebe komm durch klick auf den Button zur nächsten Seite, außerdem möchte ich das das was man als Passwort eingibt durchgehend sichtbar ist, aber anscheind funktioniert die Zeile hier nicht:
text1.setInputType(InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD);
Ich hoffe ihr könnt mir helfen.
MfG
Sonniger