Button btnShowAll = (Button)findViewById(R.id.button3); OnClickListener showAll = new OnClickListener(){ public void onClick(View view){ Intent j = new Intent(MainActivity.this, ViewAll.class); startActivity(j); } }; btnShowAll.setOnClickListener(showAll);