タイトルが示すように、android で facebook/twitter を介して何かを共有したいと思います。facebook/twitter がインストールされている場合は、fb/twitter アプリケーションを介して投稿を共有したいと思います。それ以外の場合は、ユーザーをブラウザーに誘導します。 . ユーザーをブラウザに誘導するのは簡単ですが、fb/twitter アプリケーションを介して投稿を共有するにはどうすればよいですか?
ありがとう..
(編集済み)私はこれをやろうとしましたが、developers.facebook.comを調べましたが、フラグメントを介してこの操作を行っています。デフォルトのアクティビティでやりたいです。以下のコードを試しましたが、次のようなエラーが発生します
W/dalvikvm(16093): VFY: unable to find class referenced in signature (Landroid/support/v4/app/Fragment;)
W/dalvikvm(16093): VFY: unable to find class referenced in signature (Landroid/support/v4/app/Fragment;)
W/dalvikvm(16093): VFY: unable to resolve static method 367: Landroid/support/v4/content/LocalBroadcastManager;.getInstance (Landroid/content/Context;)Landroid/support/v4/content/LocalBroadcastManager;
デフォルトのアクティビティで使用したコードは次のとおりです。
private void publishStory() {
Session currentSession = Session.getActiveSession();
if (currentSession != null){
Bundle postParams = new Bundle();
postParams.putString("name", Commons.campaignname);
postParams.putString("display", "touch");
postParams.putString("link", Commons.campaignlink");
postParams.putString("picture",Commons.campaignimage);
Request.Callback callback= new Request.Callback() {
public void onCompleted(Response response) {
JSONObject graphResponse = response
.getGraphObject()
.getInnerJSONObject();
String postId = null;
try {
postId = graphResponse.getString("id");
} catch (JSONException e) {
Log.i("TAG",
"JSON error "+ e.getMessage());
}
FacebookRequestError error = response.getError();
if (error != null) {
Toast.makeText(getApplicationContext(),
error.getErrorMessage(),
Toast.LENGTH_SHORT).show();
} else {
Toast.makeText(getApplicationContext(),
postId,
Toast.LENGTH_LONG).show();
}
}
};
Request request = new Request(currentSession, "me/feed", postParams,
HttpMethod.POST, callback);
RequestAsyncTask task = new RequestAsyncTask(request);
task.execute();
}
}
private boolean isSubsetOf(Collection<String> subset, Collection<String> superset) {
for (String string : subset) {
if (!superset.contains(string)) {
return false;
}
}
return true;
}