public class SoundClass {

static SoundPool soundPool = new SoundPool(3, AudioManager.STREAM_MUSIC, 0);

public static Context mContext;

static int chvoice = soundPool.load(mContext, R.raw.voice_pororo_1,1)

}

----------------------------------------------------------------------------

public class Asdwww extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.layout_char);

SoundClass.soundPool.play(SoundClass.chvoice, 1, 1, 0, 0, 1);

}

}

--------------------------------------------------------------

이렇게 SoundClass 에서 soundpool을 load 시켜놓고

Asdwww 에서 바로 play만시켜주려고 합니다.

근데 SoundClass 에 mContext를 어떻게 해줘야 할까요..

클래스부분이 약해서 찾아봐도 잘모르겠네요..