First of all you initialize your Button or TextView of ImageView or ImageButton with its particular id. this id is not duplicate be care this and then define the onclick event for Button or etc like that a_Button.setOnClickListener(new OnClickListener(){
@Override
public void OnClick(View view) {
Intent new_screen=new Intent(AthisActivity.this,BActivity.class);
startActivity(new_screen);
}
});
@Override
public void OnClick(View view) {
Intent new_screen=new Intent(AthisActivity.this,BActivity.class);
startActivity(new_screen);
}
});