0

我正在尝试开发一个功能,让我的 android 应用程序测试手机上的数据是否与服务器上的数据匹配。

除了我希望消息从服务器返回到处理程序之外,我让函数的每个部分都工作正常,然后我希望处理程序返回 false 或 true 并将值传递给返回布尔值的函数。

一个正确方向的点将不胜感激。

这是到目前为止的android代码。

public boolean isTripUpladedToServer(int tripId)
{
    if(isServiceRunning()&&tripId==currentTripId){return false;}
    SQLiteDatabase db;
    db=this.openOrCreateDatabase(DATABASE_NAME, SQLiteDatabase.OPEN_READWRITE, null);
    String Qu="SELECT COUNT(tripid) from TRIP_DATA WHERE TRIPID="+tripId+";";
    Cursor c= db.rawQuery(Qu, null);
    int count=0;
    if(c!=null &&c.moveToFirst())
    {
        count=c.getInt(0);
    }
    JSONArray parcel =new JSONArray();
    JSONObject header =new JSONObject();
    JSONObject message =new JSONObject();
    try {
        header.put("tablename", "isTripUploaded");
        header.put("userid", userid);
        parcel.put(header);
        message.put("count", count);
        message.put("tripid", tripId);
        parcel.put(message);
        Log.i(tag, parcel.toString());
    } catch (JSONException e) {
        // TODO Auto-generated catch block
        e.printStackTrace();
    }

    Handler inner=new Handler()
    {   
        @Override
        public void handleMessage(Message msg)
        {
            try {
                JSONObject ret=new JSONObject(msg.obj.toString());
                Log.i(tag,ret.toString());


          // I want the function to return the boolean value that the server has sent to phone.


} catch (JSONException e) {

                e.printStackTrace();
            }

        }
    };

    new uploadero(inner).execute(parcel);

  //the below return value is here to prevent the error, ideally I want to remove it
    return false;
}

如果我以错误的方式处理这个问题,请说,提前谢谢马克

4

1 回答 1

1

对布尔值使用类变量并在处理程序中使用 getter 来获取它。

于 2013-09-04T23:13:06.607 回答