获取从消息到Android处理程序的返回数据

时间:2012-05-04 11:03:29

标签: android handler

今天我将一些数据发送到处理程序,以便对OpenFeint方法进行非静态调用。一切都很好,直到返回,我不知道如何检索信息。

主类中的方法调用:

public static float getPercentageAchievement(String idAchievement) {
    Message msg = new Message();
    msg.what = OpenFeintXHandler.GET_PERCENTAGE_ACHIEVEMENT;
    Bundle args = new Bundle();
    args.putString(BUNDLE_ARG_1, idAchievement);
    msg.setData(args);
    ms_kOpenFeintHandler.sendMessage(msg);
    return msg.getData().getFloat(BUNDLE_RETURN); // msg is empty here
}

处理程序类中的消息处理:

case GET_PERCENTAGE_ACHIEVEMENT:
        msg.getData().putFloat(
                OpenFeintX.BUNDLE_RETURN,
                otherGetPercentageAchievement(msg.getData().getString(
                        OpenFeintX.BUNDLE_ARG_1)));
        break;

处理程序类中的测试方法:

private float otherGetPercentageAchievement(String idAchievement) {     
    return 200;
}

2 个答案:

答案 0 :(得分:5)

您可以使用此格式设置数据

设置数据时

Message msg = new Message();
msg.obj = data which you want to set // for object data
Msg.arg1  = data which you want to set // for integer data

获取数据时

String data = (String) msg.obj; // If object is of String
int integerData = msg.arg1;

msg.arg1一次只传递一个数据,您也可以传递msg.arg2中的数据,它们都是整数类型

答案 1 :(得分:1)

但为什么你坚持在邮件中收到返回值? 认为消息是异步发送的,因此可以在处理程序中设置值之前执行return语句...

我愿意:

String data=otherGetPercentageAchievement(msg.getData().getString(OpenFeintX.BUNDLE_ARG_1));
//use the data directly in the handler...set a variable in other class or whatever you want to do here.