Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私は本の現在の位置(例:0:04/6:35)からオーディオブックを再生したいアンドロイドアプリケーションで作業しています。これを達成してください。解決策を得るために誰か助けてください。
一時停止した場合:
Mediaplayer.pause(); length = Mediaplayer.getCurrentPosition(); Mediaplayer.seekTo(length); Mediaplayer.start();
または、最初から直接開始する場合は、次のようにします。
length = 4 * 1000; //milliseconds, starts at 0:04 Mediaplayer.seekTo(length); Mediaplayer.start();