I’m trying to switch the views, but when I’m in the second view, the back event click doesnt work.. I don’t know what’s wrong.
Pls, see my code and help me!
public class t extends Activity implements OnClickListener {
Button volta;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.janela2);
volta = (Button) findViewById(R.id.button2);
volta.setOnClickListener(this);
}
@Override
public void onClick(View v) {
if (v == volta) {
startActivity(new Intent(t.this, MainActivity.class));
}
}
}
You have to override onBackPressed. Change your MainActivity as below