大家好,我正在尝试从 apprequest 邀请中获取返回的值,所以我这样做了;
public void onComplete(Bundle values) {
final int[] to = values.getIntArray("to");
int n = to.length
}
但是当我使用 n 变量时,这是 LogCat:
08-26 18:40:04.312: E/AndroidRuntime(6464): java.lang.NullPointerException
我尝试过使用 getIntArray、getFloatArray、getLongArray、getStringArray,但没有任何效果。如果我查看 Facebook Developer 的页面,它会说:
An array of the recipient user IDs for the request that was created.
但它没有说什么是数组类型。谢谢你