Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

i have a little problem and i hope you can help me to fix it. i created a project "FragmentPlayer", which consists of two fragments. i use a swipeview to swithc between that 2 fragments. the fragment_A has 3 buttons (play, stop, exit) and fragment_B hast an imageview and two textviews. when i push the play-button, the music begins to play. when i spwipe to fragment_B while the music is playing, i can see the cover, the interpreter and the songtitel of the song. to extract these metadata-parameters from the song i used the MediaMetadataRetriever.

it works very well without errors. now i created a new project. in this project i implemented the same codes from the FragmentPlayer-poject, suddenly i became errors when i push the play button.

here is the error-massage:

01-30 17:57:32.088: W/dalvikvm(17447): threadid=1: thread exiting with uncaught exception (group=0x40c571f8)
01-30 17:57:32.108: E/AndroidRuntime(17447): FATAL EXCEPTION: main
01-30 17:57:32.108: E/AndroidRuntime(17447): java.lang.IllegalStateException: Could not execute method of the activity
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.view.View$1.onClick(View.java:3100)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.view.View.performClick(View.java:3627)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.view.View$PerformClick.run(View.java:14329)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.os.Handler.handleCallback(Handler.java:605)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.os.Handler.dispatchMessage(Handler.java:92)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.os.Looper.loop(Looper.java:137)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.app.ActivityThread.main(ActivityThread.java:4511)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at java.lang.reflect.Method.invokeNative(Native Method)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at java.lang.reflect.Method.invoke(Method.java:511)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:980)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:747)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at dalvik.system.NativeStart.main(Native Method)
01-30 17:57:32.108: E/AndroidRuntime(17447): Caused by: java.lang.reflect.InvocationTargetException
01-30 17:57:32.108: E/AndroidRuntime(17447):    at java.lang.reflect.Method.invokeNative(Native Method)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at java.lang.reflect.Method.invoke(Method.java:511)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.view.View$1.onClick(View.java:3095)
01-30 17:57:32.108: E/AndroidRuntime(17447):    ... 11 more
01-30 17:57:32.108: E/AndroidRuntime(17447): Caused by: java.lang.IllegalArgumentException
01-30 17:57:32.108: E/AndroidRuntime(17447):    at android.media.MediaMetadataRetriever.setDataSource(MediaMetadataRetriever.java:147)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at com.example.googlemapsv2.MainActivity.loadMp3DataFile(MainActivity.java:138)
01-30 17:57:32.108: E/AndroidRuntime(17447):    at com.example.googlemapsv2.MainActivity.StartProcess(MainActivity.java:87)
01-30 17:57:32.108: E/AndroidRuntime(17447):    ... 14 more
01-30 17:58:00.438: I/Process(17447): Sending signal. PID: 17447 SIG: 9

where is the problem?? i dont understand why this does not work. any advices?? thx in advance.

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.