Androidでカメラやギャラリーから写真やビデオをfbアカウントにアップロードする方法は? この問題を解決するための提案をお願いします。次のコードを使用して、fb アカウントにステータスを投稿できます。
AsyncFacebookRunner mAsyncFbRunner = new AsyncFacebookRunner(mFacebook);
Bundle params = new Bundle();
params.putString("message", review);
params.putString("picture", "http://twitpic.com/show/thumb/6hqd44");
mAsyncFbRunner.request("me/feed", params, "POST",
new WallPostListener());
前もって感謝します