Facebookのサンプルアプリで、テストと画像の更新を別々にウォールに投稿しています。これらを組み合わせて、「皆さん、これが私の犬の写真です! 写真が続きます(レイアウトはあまり気にしません)。
私がこれを行う場合/どのようにアイデアはありますか?
バンドルを作成し、そこにすべての情報を配置します。
Bundle postParams = new Bundle();
postParams.putString("name", "example");
postParams.putString("caption", "caption of the image.");
postParams.putString("description", "Put your status here.");
postParams.putString("picture", "www.example.com/image.jpg");
タイムラインに投稿するリクエスト オブジェクトでこのバンドルを使用します。
お役に立てれば :)