我是making的一个报价应用程序,在每个textview之后,我都放了4个按钮来共享该文本,例如复制,whatsapp,共享和facebook。那里。我根据我的知识尝试了所有方法,但没有任何反应,请尽快解决。
这是我的代码
`public void facebook()
{
Intent intent = new Intent();
intent.setType("text/plain");
intent.setAction(Intent.ACTION_SEND);
intent.putExtra(Intent.EXTRA_TEXT,"Nice App");
intent.setPackage("com.facebook.katana");
try {
startActivity(intent);
}
catch (android.content.ActivityNotFoundException e)
{
Toast.makeText(this, "Sorry this app is not Installed in your system" , Toast.LENGTH_SHORT).show();
}
}`