일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 자바스크립트
- 폼메일
- Mail Server
- soundpool
- mysql
- 설치
- FCM
- php 취약점
- php 시큐어코딩
- PHP
- not working
- roundcube
- 안드로이드 푸시
- 자동 생성
- UML
- dovecot
- WebView
- xe
- html5
- chart.js
- curl
- 우분투
- javascript
- 안드로이드
- 안드로이드 푸쉬
- C# IO
- Android
- 안드로이드 gcm
- android 효과음
- C#
- Today
- Total
목록soundpool (2)
그러냐
삼성폰에서 주로 테스트를 하여 이상없구나 했는데 LG 폰으로 테스트를 하니 소리가 안난다 검색해보니 The file is not there. The file is there, but it is not readable for some reason. The file is there, and it is readable, but it is corrupt or not an audio file. The file is there, and it is readable, and it is a non corrupted audio file, but SoundPool dislikes it. Sometimes audios with high frequency just goes bad. Try one with lower freque..
안드로이드에서 오디오 파일을 재생하기 위한 방법은 크게 2가지가 있는데, 하나는 MediaPlayer를 사용하는 것이고 다른 하나는 여기서 살펴볼 SoundPool을 이용하는 것입니다. 둘의 차이는 MediaPlayer는 상대적으로 음악과 같이 음원의 길이가 긴 것들을 한 번에 하나씩 재생하는데 용이한 구조이고, SoundPool은 반대로 게임의 효과음처럼 짧으면서 여러개를 동시에 재생할 필요가 있는 것들을 다룰 때 유용합니다. 1. 음원의 종류 및 위치 지원하는 종류는 https://developer.android.com/guide/topics/media/media-formats.html 에 나와 있듯이 거의 대부분의 음원이라고 생각하면 될 것 같습니다. 음원은 res/raw 아래 위치하면 됩니다. (..