안드로이드 스튜디오 버튼클릭 효과음 + 기본 효과음 제거 2가지 방법
버튼을 클릭하거나 특정 뷰를 클릭했을때 효과음을 내고 싶다면 아래와 같이 하면 됩니다. 첫번째로 스튜디오에 raw폴더를 만들어 원하는 사운드를 복사합니다. 위와 같이 파일을 추가했다면 액티비티에 소스를 아래와 같이 추가해줍니다. private SoundPool soundPool; int soundPlay; soundPool = new SoundPool(3, AudioManager.STREAM_MUSIC, 0); soundPlay = soundPool.load(this, R.raw.alter, 1); soundPool.play(soundPlay, 1f, 1f, 0, 0, 1f); soundPool = new SoundPool(maxStreams, streamType, srcQuality); maxStrea..
2019. 10. 31.