我正在为Pinterest做一个android共享意图,但是没有完全正常工作.我能够附加图像,但我无法将文本发送到共享窗口中的"描述"字段.我尝试了不同的类型(text/plain,image/*,image/png),并尝试了ACTION_SEND_MULTIPLE意图类型,但仍然没有运气.Google Chrome共享意图非常有效,因此我确信Pinterest支持此功能.这是我的代码:
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("*/*");
intent.putExtra(Intent.EXTRA_TEXT, text);
if(file != null) intent.putExtra(Intent.EXTRA_STREAM, Uri.fromFile(file));
intent.setClassName(packageName, name);
this.startActivity(intent);
Run Code Online (Sandbox Code Playgroud)
任何的想法?谢谢!