1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Android】MediaPlayerで音楽を再生する方法(備忘録)

Posted at

#プログラミング勉強日記
2021年1月14日
MediaPlayerを使って簡単に音楽する方法をまとめる。

#MediaPlayerの使い方
 MediaPlayerで音楽を再生する方法は、音楽ファイルを再生する場合とURI・URLから再生する場合がある。

 MediaPlayerで音楽ファイル使う場合、音楽ファイルはres/assetsまたはres/rawに置く。
 assetsはフォルダ分けをすることができる。そのため、音楽ファイルが複数ある場合はassetsに置く方がいい。rawはそのまま音楽ファイルを入れる。
 それぞれのフォルダはこのようにして作成することができる。
image.png

音楽ファイルを再生する場合
mp = MediaPlayer.create(this, R.raw.musicFile); // 音楽ファイルを読み込み

mp.start(); // 再生開始
URIから再生する場合
Uri uri = ; 
MediaPlayer mp = MediaPlayer.create(context, uri);
mp.start();
URLから再生する場合
String url = "http://........";
MediaPlayer mp = new MediaPlayer();
mp.setAudioStreamType(AudioManager.STREAM_MUSIC);
mp.setDataSource(url);
mp.prepare(); 
mp.start();
1
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?