Consider:
dataTextView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent facebookIntent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://www.facebook.com/app_scoped_user_id/1149231332XXXX/"));
startActivity(facebookIntent);
}
});
But it always open this URL in the browser instead of the app.