gpt4 book ai didi

android - 如何从android中的webservice快速加载数据?

转载 作者:行者123 更新时间:2023-11-29 16:14:55 26 4
gpt4 key购买 nike

我正在从 Web 服务访问数据,但是当从一个 Activity 移动到另一个 Activity 时,它会显示黑屏,直到该 Activity 加载完毕,然后才显示我的 Activity。

如何避免黑屏并快速访问数据?

代码:

JSONObject json = getJSONfromURL(url);   
HttpClient httpclient = new DefaultHttpClient();
HttpPost httppost = new HttpPost(url);
HttpResponse response = httpclient.execute(httppost);
HttpEntity entity = response.getEntity();is =entity.getContent();

最佳答案

这是一个 AsyncTask 示例 - http://www.vogella.com/articles/AndroidPerformance/article.html

这是一个进度对话示例 - http://www.vogella.com/articles/AndroidDialogs/article.html

应该让您朝着正确的方向开始。

关于android - 如何从android中的webservice快速加载数据?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10240477/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com