5つの異なるライブチャンネルをストリーミングするための5つのボタンがあるアプリを作成しました。5つのボタンに加えて、プログレスバー(リング)があります。ビデオの読み込みに時間がかかっているため、プログレスバーを使用しています。ボタンのクリックイベントで呼び出される値を返すAsyncTaskのonBackground()にメインコードを記述しました。5つのボタンすべてに異なるURLが割り当てられているので、5つのボタンすべてに同じonBackground()を使用するにはどうすればよいですか?この場合はどうすればよいですか?誰かが良い例を教えてください。
質問する
135 次
2 に答える
0
onBackground()
AsyncTaskの一部です。ボタンやその他のUI要素とは何の共通点もありません。コードを再利用する場合は、UIを引数としてAsyncTaskコンストラクターに渡し、必要に応じて使用します。
于 2013-03-20T06:21:06.823 に答える
0
Video Path
private static String file_url = "url";
in your activity
new DownloadFileFromURL()。execute(file_url);
@Override
protected Dialog onCreateDialog(int id) {
switch (id) {
case progress_bar_type: // we set this to 0
pDialog = new ProgressDialog(this);
pDialog.setMessage("Downloading file. Please wait...");
pDialog.setIndeterminate(false);
pDialog.setMax(100);
pDialog.setProgressStyle(ProgressDialog.STYLE_HORIZONTAL);
pDialog.setCancelable(true);
pDialog.show();
return pDialog;
default:
return null;
}
}
Background Async Task to download file
/**
* Background Async Task to download file
* */
class DownloadFileFromURL extends AsyncTask<String, String, String> {
/**
* Before starting background thread Show Progress Bar Dialog
* */
@Override
protected void onPreExecute() {
super.onPreExecute();
showDialog(progress_bar_type);
}
/**
* Downloading file in background thread
* */
@Override
protected String doInBackground(String... f_url) {
int count;
try {
URL url = new URL(f_url[0]);
URLConnection conection = url.openConnection();
conection.connect();
// this will be useful so that you can show a tipical 0-100%
// progress bar
int lenghtOfFile = conection.getContentLength();
// download the file
InputStream input = new BufferedInputStream(url.openStream(),
8192);
// Output stream
OutputStream output = new FileOutputStream(Environment
.getExternalStorageDirectory().toString()
+ "/demo.mp4");
byte data[] = new byte[1024];
long total = 0;
while ((count = input.read(data)) != -1) {
total += count;
// publishing the progress....
// After this onProgressUpdate will be called
publishProgress("" + (int) ((total * 100) / lenghtOfFile));
// writing data to file
output.write(data, 0, count);
}
// flushing output
output.flush();
// closing streams
output.close();
input.close();
} catch (Exception e) {
Log.e("Error: ", e.getMessage());
}
return null;
}
/**
* Updating progress bar
* */
protected void onProgressUpdate(String... progress) {
// setting progress percentage
pDialog.setProgress(Integer.parseInt(progress[0]));
}
/**
* After completing background task Dismiss the progress dialog
* **/
@Override
protected void onPostExecute(String file_url) {
// dismiss the dialog after the file was downloaded
dismissDialog(progress_bar_type);
// Displaying downloaded video into video view
// Reading image path from sdcard
String videopath = Environment.getExternalStorageDirectory()
.toString() + "/demo.mp4";
// setting downloaded into image view
}
}
于 2013-03-20T06:23:03.507 に答える