Android 문서 서버 종료 포함 (client UI 인터페이스 비동기 요청 의 일부분) 3

5302 단어 android
본 논문 에서 AsyncTask 는 비동기 요 구 를 실현 하기 위해 상세 한 코드 는 다음 과 같다.
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.  결과 업데이트

좋은 웹페이지 즐겨찾기