You can install OnClickListener for almost any kind, and not just buttons, for your code:
YourTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
}
});
Assuming you move between actions, the navigation code will look like this:
Intent myIntent = new Intent(CurrentActivityName.this,NextActivityName.class);
startActivity(myIntent);
source
share