0

我已经按照 Facebook android 发送请求对话框教程我的朋友确实收到了请求,但是他们看不到我与请求关联的消息。

例如 params.putString("message", "Learn how to make your Android apps social");

这条消息应该显示在哪里?

4

1 回答 1

1

尝试这个,

Bundle extras = getIntent().getExtras();
String message = extras.getString("message");
于 2013-05-23T12:46:48.387 回答