我在自学这一块的时候,觉得HashMap这个比较的难理解,就自己整理了一下,我把找到的在下面写一下。
为了更好的管理所加载的每一个音频,一般使用HashMap<Integer,Integer>对象来管理这些音频,先创建一个HashMap<Integer,Integer>对象,然后应用该对象的put方法,将加载的音频保存到该对象中。
下面贴一下代码:
<pre name="code" class="html">HashMap<Integer,Integer>soundmap=new HashMap<Integer,Integer>();
soundmap.put(1,soundpool.load(this,R.raw.c,1));