How to create a TextView as link that will open another activity in my application?
Implement a View.OnClickListener for your TextView and start the other activity in the listener:
textView.setOnClickListener(new View.OnClickListener(){
public void onClick(View v){
Intent intent = new Intent(this, OtherActivity.class);
startActivity(intent);
}
});
i got some suitable solutions for my requirement in this Link , in this i created TextView with autolink = all
, it is working fine for me.