Hey, bei mir im Logcat steht, dass in Zeile 23 ein Fehler auftritt. Leider schaffe ich es nicht diesen zu beheben. Hat jemand von euch eventuell eine Lösung für mich?
Danke im Voraus!
public class Login extends AppCompatActivity {
Button callSignUp;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_login);
callSignUp = findViewById(R.id.signup_screen);
callSignUp.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(Login.this,SignUp.class);
}
});
}
}
Danke im Voraus!
public class Login extends AppCompatActivity {
Button callSignUp;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
setContentView(R.layout.activity_login);
callSignUp = findViewById(R.id.signup_screen);
callSignUp.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent intent = new Intent(Login.this,SignUp.class);
}
});
}
}