start버튼 6개에 stop버튼 하나로 하여서
raw폴더에 각기다른 test~test5 6개의 mp3를 
start버튼하나하나에 각각 할당하려합니다
stop은 모든 test에 관여하구여

근데 그렇게 짜려니 쉽지 않네요...
버튼 구현까지는 쉽게했고
1on1으로 한곡을 나오게 까지는 했는데
6개를 각각 구현하려니 너무 어렵습니다


 public void onCreate() {
  Toast.makeText(this, "CREATED", Toast.LENGTH_LONG).show();
  Log.d(TAG, "onCreate");

  play = MediaPlayer.create(this, R.raw.test);
  play.setLooping(true);
 // play1 = MediaPlayer.create(this, R.raw.test1);
 // play1.setLooping(true);
 // play2 = MediaPlayer.create(this, R.raw.test2);
 // play2.setLooping(true);
 // play3 = MediaPlayer.create(this, R.raw.test3);
 // play3.setLooping(true);
 // play4 = MediaPlayer.create(this, R.raw.test4);
 // play4.setLooping(true);
 // play5 = MediaPlayer.create(this, R.raw.test5);
 // play5.setLooping(true);
 }

여기가 잘못된게 맞나모르겠지만
이거는 서비스 리소스파일이구여.

주석처리 전이 버튼하나에 연동되는건데요
어떻게해야 하나하나씩 할수있을까요
ex) play->test
play1->test1
...
play5->test5

아 다잘되다가 80%즘에 여기서 막히네요 도와주세요