我有两个活动 A--> B(A 调用 B)。对于活动 BI 有清单条目noHistory=true
,这意味着不会保留历史记录。在活动 B 中,我正在使用 HTTPPost 方法进行服务器调用。我的部分代码是:
1. BasicHttpResponse httpResponse = (BasicHttpResponse) httpclient.execute(httppost);
2. String responseBody = EntityUtils.toString(httpResponse.getEntity());
正常情况下的一切工作正常。但是,在进入活动 B 并成功调用服务器后,如果我将锁定设备,则在解锁该活动 A 后将启动(因为活动 B 有nohistory=true
)。现在,如果我从 A 调用活动 B,则应用程序正在崩溃。我能够记录的例外是Connection to http://192.16.154.10 is refused
,在第二行。
知道为什么会这样吗?