I’ve been working on this for a while, trying to get this tutorial to work (http://united-coders.com/nico-heid/an-android-seekbar-for-your-mediaplayer/), but I haven’t had any luck. The audio playback works perfect, but the SeekBar doesn’t move. package com.example.playingaudio; import android.app.Activity; import android.media.AudioManager; import android.media.MediaPlayer; import android.os.Bundle; import android.view.View; import android.widget.SeekBar; public class MainActivity extends Activity { private MediaPlayer mediaPlayer; [...]
The post MediaPlayer works in Android, but progress does not appeared first on BlogoSfera.