私は次の方法を持っています:
public static boolean getIsUp()
{
String method = "isup.php";
AsyncHttpResponseHandler response = new AsyncHttpResponseHandler(){
@Override
public void onSuccess(String content) {
if(Integer.parseInt(content) == IS_UP_CONTENT)
//code to return true
else
//code to return false
}
};
get(method, null, response);
}
メソッドが適切な応答を返すように、true を返す // コードと false を返す // コードをどのように埋めますか? それは可能ですか?