在 android 应用程序中为所有应用程序共享数据
Share Data in android app for all applications
如何在 android 中为所有应用程序共享数据(txt 或图像 ....)
例如
Share Data(txt or image ....) in android for all applications
facebook 上没有代码
Intent sendIntent = new Intent(android.content.Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));
您只能使用意图共享链接。您需要 Facebook Sdk 才能分享文字或图片
如何在 android 中为所有应用程序共享数据(txt 或图像 ....)
例如
Share Data(txt or image ....) in android for all applications
facebook 上没有代码
Intent sendIntent = new Intent(android.content.Intent.ACTION_SEND);
sendIntent.putExtra(Intent.EXTRA_TEXT, "This is my text to send.");
sendIntent.setType("text/plain");
startActivity(Intent.createChooser(sendIntent, getResources().getText(R.string.send_to)));
您只能使用意图共享链接。您需要 Facebook Sdk 才能分享文字或图片