Skip to content

Instantly share code, notes, and snippets.

@YvesBill
Created August 16, 2013 16:22
Show Gist options
  • Select an option

  • Save YvesBill/6251331 to your computer and use it in GitHub Desktop.

Select an option

Save YvesBill/6251331 to your computer and use it in GitHub Desktop.
......
// Settare il bottone, e il suo ID
Button btnuno=(Button)findViewById(R.id.button1);
btnuno.setOnClickListener(new OnClickListener(){
public void onClick(View arg0) {
// Settare l'intento al Click del bottone
Intent openPage1 = new Intent(MainActivity.this,Page1.class);
startActivity(openPage1);
}
});
......
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment