Home
last modified time | relevance | path

Searched refs:mSoundMap (Results 1 – 1 of 1) sorted by relevance

/cts/apps/CtsVerifier/src/com/android/cts/verifier/sensors/
DRVCVRecordActivity.java67 private Map<String, Integer> mSoundMap; field in RVCVRecordActivity
269 mSoundMap = new HashMap<>(); in initSoundPool()
272 mSoundMap.put("start", mSoundPool.load(this, R.raw.start_axis, 1)); in initSoundPool()
273 mSoundMap.put("end", mSoundPool.load(this, R.raw.next_axis, 1)); in initSoundPool()
274 mSoundMap.put("half-way", mSoundPool.load(this, R.raw.half_way, 1)); in initSoundPool()
285 Integer id = mSoundMap.get(name); in playNotifySound()