Share a text with facebook messenger?

后端 未结 4 1461
囚心锁ツ
囚心锁ツ 2020-12-10 11:05

Is there a way to share a text in facebook messenger using android and maybe facebook sdk as well?

I want to make something like the whatsapp way, choose your text a

4条回答
  •  孤城傲影
    2020-12-10 11:31

    to start Facebook messenger with a particular user

    Uri uri = Uri.parse("fb-messenger://user/"); uri = ContentUris.withAppendedId(uri,[provide user id]); Intent intent = new Intent(Intent.ACTION_VIEW, uri); startActivity(intent);

    it will start the messenger for user id you mention

提交回复
热议问题