import
android.os.Bundle;
import
android.text.util.Linkify;
import
android.widget.TextView;
import
androidx.appcompat.app.AppCompatActivity;
public
class
MainActivity
extends
AppCompatActivity {
@Override
protected
void
onCreate(Bundle savedInstanceState) {
super
.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
TextView mobile = (TextView) findViewById(R.id.mobile);
TextView google = (TextView) findViewById(R.id.google);
TextView email = (TextView) findViewById(R.id.email);
mobile.setText(
"+919065239713"
);
google.setText(
"www.google.com"
);
Linkify.addLinks(email, Linkify.ALL);
Linkify.addLinks(mobile, Linkify.ALL);
Linkify.addLinks(google, Linkify.ALL);
}
}