アプリを介して、Google Play ストアから Facebook ウォールへのアプリ リンクを共有しようとしています。しかし、リンクがウォールに投稿されると、間違ったアイコンが表示されます。
リンクをクリックすると、正しい場所にリダイレクトされます。
String message = "play.google.com/store/apps/details?id="+ mItem.getPackageName();
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, message);
startActivity(Intent.createChooser(share, "Share "+mItem.getAppName()+" with your friends"));