OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
full:soundname
(Results
1 - 1
of
1
) sorted by null
/frameworks/base/media/java/android/media/
MediaActionSound.java
112
* @param
soundName
The type of sound to preload, selected from
121
public synchronized void load(int
soundName
) {
122
if (
soundName
< 0 ||
soundName
>= SOUND_FILES.length) {
123
throw new RuntimeException("Unknown sound requested: " +
soundName
);
125
if (mSoundIds[
soundName
] == SOUND_NOT_LOADED) {
126
mSoundIds[
soundName
] =
127
mSoundPool.load(SOUND_FILES[
soundName
], 1);
152
* @param
soundName
The type of sound to play, selected from
162
public synchronized void play(int
soundName
) {
[
all
...]
Completed in 29 milliseconds