3

我使用以下代码播放录制的音频文件,效果很好。我有一个显示游戏进度的搜索栏。我有两个名为 start 和 end 的静态文本。我需要在开始文本中显示播放的持续时间(00.00 到最大持续时间),并将时间从最大持续时间减少到 00.00。我需要显示进度时间,剩余时间......任何建议..

私人无效playAudio(){
        // TODO 自动生成的方法存根
        start.setVisibility(View.VISIBLE);
        end.setVisibility(View.VISIBLE);
        上下文上下文 = getApplicationContext();
        CharSequence text1 = "您的音频将播放";
        int 持续时间 = Toast.LENGTH_SHORT;
        Toast toast1 = Toast.makeText(context, text1, duration);
        toast1.setGravity(Gravity.CENTER_VERTICAL, 0, 0);
        toast1.show();

String newFolderName = "/ComAudioRecorder"; String extstoredir = Environment.getExternalStorageDirectory() .toString(); String filename = "/combinedrecaudio.wav"; String path1 = extstoredir + newFolderName + filename; Log.d("path1", path1); /* * String path=path2; Log.d("path",path); */ mPlayer = new MediaPlayer(); try { mPlayer.setDataSource(path1); mPlayer.prepare(); mPlayer.start(); } catch (IllegalArgumentException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IllegalStateException e) { // TODO Auto-generated catch block e.printStackTrace(); } catch (IOException e) { // TODO Auto-generated catch block e.printStackTrace(); } mSeekBar.setMax(mPlayer.getDuration()); new Thread(new Runnable() { @Override public void run() { // TODO Auto-generated method stub while (mPlayer != null && mPlayer.getCurrentPosition() < mPlayer.getDuration()) { Log.d("Indide Run Method",Integer.toString(mPlayer.getCurrentPosition())); try { Thread.sleep(100); } catch (InterruptedException e) { // TODO Auto-generated catch block e.printStackTrace(); } mSeekBar.setProgress(mPlayer.getCurrentPosition()); start.setText(Long.toString(startTime)); //end.setText(Double.toString()); } } }).start(); pos=mPlayer.getCurrentPosition(); mSeekBar.setProgress(mPlayer.getCurrentPosition()); // mPlay.setVisibility(View.INVISIBLE); pauseRecord.setVisibility(View.INVISIBLE); resumeRec.setVisibility(View.VISIBLE); /*start.setText(Double.toString(starttext)); starttext=starttext+00.01;*/ // start.setText((int) (mPlayer.getCurrentPosition()/100000.0)); // end.setText(currentTime); // start.setText(); // mDelete.setVisibility(View.INVISIBLE); }
4

2 回答 2

4

您无法更新线程中的 UI。您可以将它们发布到 Runnable。

在运行方法()中放入以下代码。

mHandler.post(updateUI);

然后使用处理程序更新 ui

 private final Runnable updateUI= new Runnable() 
        {
            public void run() 
            {
                try 
                {
                    //update ur ui here     
                      start.setText((mPlayer.getCurrentPosition()/mPlayer.getDuration())*100); ‌​ end.setText(mPlayer.getDuration()-mPlayer.getCurrentPosition())

                } 
                catch (Exception e) 
                {
                    e.printStackTrace();
                }
            }
        };
        private final Handler mHandler = new Handler();
于 2011-06-02T04:03:25.803 回答
3

每 1 秒,您可以使用公式更新进度条(mPlayer.getCurrentPosition()/mPlayer.getDuration)*100;

同样,您可以使用mPlayer.getDuration-mPlayer.getCurrentPosition();获得剩余时间

您可以在 onPreparedListener 获取音频文件的 getDuration()...

成功了告诉我。

于 2011-06-01T12:23:43.327 回答