Facebook Intent Android App
Facebook Intent Android App:
How to open facebook profile?
String fb_Uid = "100012186064725";
try {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/"+fb_Uid));
startActivity(intent);
} catch (Exception e){
startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("https://www.facebook.com/"+fb_Uid)));
}
How to open facebook page?
String fb_Uid = "100063624096325";
try {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://profile/"+fb_Uid));
startActivity(intent);
} catch (Exception e){
startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("https://www.facebook.com/"+fb_Uid)));
}
How to open facebook group?
String fb_Uid = "1872452446373863";
try {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb://group/"+fb_Uid));
startActivity(intent);
} catch (Exception e){
startActivity(new Intent(Intent.ACTION_VIEW,Uri.parse("https://www.facebook.com/"+fb_Uid)));
}
how to send message in facebook?
String fb_Uid = "100012186064725";
try {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("fb-messenger://user/"+fb_Uid));
intent.putExtra(Intent.EXTRA_TEXT, "My message to send");
startActivity(intent);
} catch (Exception e){
Toast.makeText(this, "Please Install Messenger", Toast.LENGTH_SHORT).show();
}
Comments
Post a Comment