MediaPlayer.getCurrentPosition IllegalStateException 오류
재생된 인터페이스에서 다른 인터페이스로 이동할 때 MediaPlayer가 계속 표시됩니다.getCurrentPosition IllegalStateException의 오류입니다.나중에 생각해 보니 플레이어가 있는 액티비티가 OnStop 상태에 들어갔기 때문에 백그라운드에서 음악 진도표를 조정하는 서비스로 하여금 진도표 (MediaPlayer.getCurrent Position) 를 가져오는 것은 합법적이지 않을 것이다.
원본 코드는 다음과 같다.
1 public void run() {
2 // TODO Auto-generated method stub
3 while (isRun) {
4 try {
5 Thread.sleep(200);
6 } catch (InterruptedException e) {
7 // TODO Auto-generated catch block
8 e.printStackTrace();
9 }
10 ////////////////////// /////////////////////
11 if (null != player) {
12 if (!player.isPlaying()) {// ,
// ,
13 Log.d(strTag, " , ");
14 break;
15 }
16 ///////////////////////////////////////////////////////////////
17 int position = player.getCurrentPosition();
18 int total = player.getDuration();
19 Intent intent = new Intent("com.leranxinsheng.progress");
20 intent.putExtra("position", position);
21 intent.putExtra("total", total);
22 sendBroadcast(intent);
23 }
24
25 if (null != player) {
26 if (player.isPlaying()) {
27 playing = true;
28 } else {
29 Log.d(strTag, " , if");
30 playing = false;
31 }
32 }
33 }
34 }
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.