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.java66 private Map<String, Integer> mSoundMap; field in RVCVRecordActivity
268 mSoundMap = new HashMap<>(); in initSoundPool()
271 mSoundMap.put("start", mSoundPool.load(this, R.raw.start_axis, 1)); in initSoundPool()
272 mSoundMap.put("end", mSoundPool.load(this, R.raw.next_axis, 1)); in initSoundPool()
273 mSoundMap.put("half-way", mSoundPool.load(this, R.raw.half_way, 1)); in initSoundPool()
284 Integer id = mSoundMap.get(name); in playNotifySound()