Android 문서 서버 종료 포함 (client UI 인터페이스 비동기 요청 의 일부분) 3
5302 단어 android
public class downloadActivity extends Activity {
private TextView myTextView=null;
private Button button=null;
private static final String path="http://192.168.0.179:8080/Myweb/download.do";
private ProgressDialog progressDialog=null;
private URL url=null;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.download);
//
Intent intent = getIntent();
String value = intent.getStringExtra("username");
value="hello"+" "+value;
//
myTextView = (TextView) findViewById(R.id.textView1);
myTextView.setText(value);
button=(Button)this.findViewById(R.id.download_btn);
progressDialog=new ProgressDialog(this);
progressDialog.setCancelable(false);
progressDialog.setTitle(" ");
progressDialog.setMessage(" , ....");
try {
url=new URL(path);
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
button.setOnClickListener(new OnClickListener() {
public void onClick(View arg0) {
//progressDialog.show();
new DownloadFilesTask().execute(url);
}
});
}
private class DownloadFilesTask extends AsyncTask<URL, Void, Void> {
@Override
protected void onPreExecute() {
progressDialog.show();
super.onPreExecute();
}
@Override
protected Void doInBackground(URL... urls) {
httpUtils.sendDownloadPost(urls[0]);
return null;
}
@Override
protected void onPostExecute(Void result) {
progressDialog.dismiss();
super.onPostExecute(result);
}
}
}
등록 할 때 Intent 를 사용 하여 username 데 이 터 를 전 달 했 습 니 다.
AsyncTask<URL, Void, Void>
주로 세 개의 매개 변수 가 있다.Params
, the type of the parameters sent to the task upon execution. 본문 전달 URL 데이터 Progress
, 백그라운드 계산 중 에 게 시 된 진행 단위 의 유형. / / 진도 항목 Result
, the type of the result of the background computation. //결과 본 고 는 진도 조 형식 을 사용 하지 않 고 Progressdialog 만 사 용 했 기 때문에 두 번 째 매개 변 수 는 비어 있 고 세 번 째 매개 변 수 를 선택 할 때 본 고 는 httpUtils 패키지 류 에 파일 을 sd 카드 에 기 록 했 기 때문에 비어 있 습 니 다.다시 쓰 는 방법:
onPreExecute()
, invoked on the UI thread immediately after the task is executed. This step is normally used to setup the task, for instance by showing a progress bar in the user interface. UI 메 인 스 레 드 에서 인자 초기 화 doInBackground(Params...)
, invoked on the background thread immediately after onPreExecute()
finishes executing. This step is used to perform background computation that can take a long time. The parameters of the asynchronous task are passed to this step. The result of the computation must be returned by this step and will be passed back to the last step. This step can also use publishProgress(Progress...)
to publish one or more units of progress. These values are published on the UI thread, in the onProgressUpdate(Progress...)
step. 비 주 스 레 드.시간 소모 조작 onProgressUpdate(Progress...)
, invoked on the UI thread after a call to publishProgress(Progress...)
. The timing of the execution is undefined. This method is used to display any form of progress in the user interface while the background computation is still executing. For instance, it can be used to animate a progress bar or show logs in a text field. onPostExecute(Result)
, invoked on the UI thread after the background computation finishes. The result of the background computation is passed to this step as a parameter. 결과 업데이트
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
Kotlin의 기초 - 2부지난 글에서는 Kotlin이 무엇인지, Kotlin의 특징, Kotlin에서 변수 및 데이터 유형을 선언하는 방법과 같은 Kotlin의 기본 개념에 대해 배웠습니다. 유형 변환은 데이터 변수의 한 유형을 다른 데이터...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.