Warning: file_get_contents(/data/phpspider/zhask/data//catemap/3/android/197.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android使用progressBar播放音频_Android_Audio_Progress Bar_Android Progressbar - Fatal编程技术网

Android使用progressBar播放音频

Android使用progressBar播放音频,android,audio,progress-bar,android-progressbar,Android,Audio,Progress Bar,Android Progressbar,在我的应用程序中有很多声音。它通过url在互联网上运行>> 我想在我的应用程序中设置进度条 我怎么做 这是一项有益的活动: 浏览下面的链接,这些链接将指导您如何在Android中实现PorgressBar 希望这对你来说足够了 您好,请尝试下面的Progressbar教程参考链接。希望对您有所帮助。您可以下载示例源代码并在应用程序中试用 您好,这里我添加了来自服务器代码的示例下载文件。请检查一下,让我知道 import java.io.InputStream; import

在我的应用程序中有很多声音。它通过url在互联网上运行>>

我想在我的应用程序中设置进度条

我怎么做

这是一项有益的活动:


浏览下面的链接,这些链接将指导您如何在Android中实现PorgressBar


希望这对你来说足够了

您好,请尝试下面的Progressbar教程参考链接。希望对您有所帮助。您可以下载示例源代码并在应用程序中试用

您好,这里我添加了来自服务器代码的示例下载文件。请检查一下,让我知道

    import java.io.InputStream;
    import java.net.URL;
    import android.app.Activity;
    import android.app.ProgressDialog;
    import android.os.Bundle;
    import android.util.Log;
    import android.view.View;
    import android.widget.Button;
    import java.io.BufferedInputStream;
    import java.io.FileOutputStream;
    import java.io.OutputStream;
    import java.net.URLConnection; 
    import android.app.Dialog;
    import android.graphics.drawable.Drawable;
    import android.os.AsyncTask;
    import android.os.Environment;
    import android.widget.ImageView;

    public class download extends Activity {

        // button to show progress dialog
        Button btnShowProgress;

        // Progress Dialog
        private ProgressDialog pDialog;
        ImageView my_image;
        // Progress dialog type (0 - for Horizontal progress bar)
        public static final int progress_bar_type = 0; 

        // File url to download
        private static String file_url = "http://alshbab90.softsmedia.com/helmi_1.mp3";

        @Override
        public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // show progress bar button
        btnShowProgress = (Button) findViewById(R.id.btnProgressBar);
        // Image view to show image after downloading
        my_image = (ImageView) findViewById(R.id.my_image);
        /**
         * Show Progress bar click event
         * */
          btnShowProgress.setOnClickListener(new View.OnClickListener()   { 

            @Override
            public void onClick(View v) {
            // starting new Async Task
            new DownloadFileFromURL().execute(file_url);
            }
        });
        }

        /**
         * Showing Dialog
         * */
        @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
         * */
        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("/sdcard/helmi_1.mp3");

            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 image into image view
             // Reading image path from sdcard
               String imagePath =  Environment.getExternalStorageDirectory().toString() + "/helmi_1.mp3";
             // setting downloaded into image view
            my_image.setImageDrawable(Drawable.createFromPath(imagePath));
        }

        }
    }
创建main.xml:

需要将AndroidManifest.xml权限添加为

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />

希望对你有帮助。请试着让我知道。谢谢

首先请在问题中设置适当的格式。你想在哪里显示ProgressBar?我是Android新手,如果你能帮助>帮助我?如果有tutrioal给我URL参考此链接,我希望这将是可行的ok sir<我将检查它>感谢>sir的可能副本,但在这个链接中,我将URL fir从我的服务器下载音频到设备?嗨,这里我添加了示例源代码,用于从服务器下载文件,文件下载带有进度条更新。请试试那个例子,让我知道。我希望它能对你有所帮助。谢谢。欢迎回来,先生。非常感谢,但进展不是从0%到100%
    import java.io.InputStream;
    import java.net.URL;
    import android.app.Activity;
    import android.app.ProgressDialog;
    import android.os.Bundle;
    import android.util.Log;
    import android.view.View;
    import android.widget.Button;
    import java.io.BufferedInputStream;
    import java.io.FileOutputStream;
    import java.io.OutputStream;
    import java.net.URLConnection; 
    import android.app.Dialog;
    import android.graphics.drawable.Drawable;
    import android.os.AsyncTask;
    import android.os.Environment;
    import android.widget.ImageView;

    public class download extends Activity {

        // button to show progress dialog
        Button btnShowProgress;

        // Progress Dialog
        private ProgressDialog pDialog;
        ImageView my_image;
        // Progress dialog type (0 - for Horizontal progress bar)
        public static final int progress_bar_type = 0; 

        // File url to download
        private static String file_url = "http://alshbab90.softsmedia.com/helmi_1.mp3";

        @Override
        public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        // show progress bar button
        btnShowProgress = (Button) findViewById(R.id.btnProgressBar);
        // Image view to show image after downloading
        my_image = (ImageView) findViewById(R.id.my_image);
        /**
         * Show Progress bar click event
         * */
          btnShowProgress.setOnClickListener(new View.OnClickListener()   { 

            @Override
            public void onClick(View v) {
            // starting new Async Task
            new DownloadFileFromURL().execute(file_url);
            }
        });
        }

        /**
         * Showing Dialog
         * */
        @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
         * */
        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("/sdcard/helmi_1.mp3");

            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 image into image view
             // Reading image path from sdcard
               String imagePath =  Environment.getExternalStorageDirectory().toString() + "/helmi_1.mp3";
             // setting downloaded into image view
            my_image.setImageDrawable(Drawable.createFromPath(imagePath));
        }

        }
    }
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<!-- Download Button -->
<Button android:id="@+id/btnProgressBar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:text="Download File with Progress Bar"
    android:layout_marginTop="50dip"/>

<!-- Image view to show image after downloading -->
<ImageView android:id="@+id/my_image"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"/>

</LinearLayout>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />