Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@codingwithsara
Created November 27, 2018 10:46
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save codingwithsara/58f3fa0400fb976b51ce102c187164dc to your computer and use it in GitHub Desktop.
Save codingwithsara/58f3fa0400fb976b51ce102c187164dc to your computer and use it in GitHub Desktop.
Android MusicPlayer 5
private Handler handler = new Handler() {
@Override
public void handleMessage(Message msg) {
int currentPosition = msg.what;
// 再生位置を更新
positionBar.setProgress(currentPosition);
}
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment