是否可以创建http连接?
你能建议样本源代码吗?
提前致谢.
@H_301_8@解决方法 作为活动中的内部类:public final class httpTask extends AsyncTask<String/* Param */,Boolean /* Progress */,String /* Result */> { private httpClIEnt mHc = new DefaulthttpClIEnt(); @OverrIDe protected String doInBackground(String... params) { publishProgress(true); // Do the usual httpclIEnt thing to get the result return result; } @OverrIDe protected voID onProgressUpdate(Boolean... progress) { // line below coupled with // getwindow().requestFeature(Window.FEATURE_INDETERMINATE_PROGRESS) // before setContentVIEw // will show the wait animation on the top-right corner MyActivity.this.setProgressbarIndeterminateVisibility(progress[0]); } @OverrIDe protected voID onPostExecute(String result) { publishProgress(false); // Do something with result in your activity }}
然后在你的活动的某个地方:
new httpTask().execute(someParams...);@H_301_8@ @H_301_8@ 总结
以上是内存溢出为你收集整理的android – 如何使用AsyncTask类创建Http连接?全部内容,希望文章能够帮你解决android – 如何使用AsyncTask类创建Http连接?所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)