1

FacebookでAndroidアプリを共有するためのボタンを配置したので、次のコードを記述しました

Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("text/plain");
// add the app link
intent.putExtra(Intent.EXTRA_TEXT, "http://play.google.com/store/apps/details?  id=com.phonelight.realparrot");
startActivity(Intent.createChooser(intent, "Share with Facebook"));

共有した後、Facebookアカウントを開いて、次のことを確認しました。

画像

ご覧のとおり、右の四角の画像になっているはずです。その画像をどうやって入れたらいいのかしら、アイコンアプリを入れようと思っています

YouTubeリンクを共有する場合と同様に、画像は映画の最初のショットになります。

4

1 に答える 1

1

に変更intent.setType("text/plain"); してintent.setType("image/*"); 追加intent.putExtra(Intent.EXTRA_STREAM, myImageContentUri);

于 2015-01-27T08:40:41.980 に答える