我希望使用ListView进行活动,在单击列表项时播放不同的声音效果。我用MediaPlayer和SoundPool测试了这个功能,两者都运行正常。
我实现了AudioTrack但是当我点击ListView中的某个项目时,它只播放噪音或崩溃,说“音频缓冲区大小无效”。
这是我的代码。
public class ATSoundAdapter extends ArrayAdapter {
private ArrayList<SoundData> mData;
private Context context;
private AudioTrack at;
public ATSoundAdapter(Context context, ArrayList<SoundData> mData) {
super(context, -1);
this.context = context;
this.mData = mData;
}
public class ViewHolder {
private TextView mSoundNameTv;
private LinearLayout container;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
ViewHolder holder;
if (convertView == null) {
convertView = LayoutInflater.from(context)
.inflate(R.layout.list_item,
parent, false);
holder = new ViewHolder();
holder.mSoundNameTv = (TextView) convertView.findViewById(R.id.sound_name_tv);
holder.container = (LinearLayout) convertView.findViewById(R.id.container);
convertView.setTag(holder);
} else {
holder = (ViewHolder) convertView.getTag();
}
final SoundData currentSound = mData.get(position);
if (currentSound != null) {
holder.mSoundNameTv.setText(currentSound.getSoundName());
holder.container.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
playAudioTrack(currentSound.getSoundResource());
}
});
}
return convertView;
}
private void playAudioTrack(int resource) {
int i = 0;
InputStream inputStream = context.getResources().openRawResource(resource);
long bufferSize = context.getResources().openRawResourceFd(resource).getLength();
byte[] buffer = new byte[(int)bufferSize];
try {
int lengthOfAudioClip = inputStream.read(buffer, 0, buffer.length);
AudioTrack at = new AudioTrack(AudioManager.STREAM_MUSIC,
44100, AudioFormat.CHANNEL_OUT_STEREO,
AudioFormat.ENCODING_PCM_16BIT,
lengthOfAudioClip, AudioTrack.MODE_STATIC);
at.write(buffer, 0, lengthOfAudioClip);
inputStream.close();
at.play();
} catch (IOException e) {
e.printStackTrace();
}
}
@Override
public int getCount() {
return mData.size();
}
}
我认为字节数组大小错误...但是当我在logcat中检查它时,它正好是原始文件的大小。 我是android的新手,不知道如何使用AudioTrack。
提前致谢。
答案 0 :(得分:1)
您可以更改代码
AudioTrack at = new AudioTrack(AudioManager.STREAM_MUSIC, 44100, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, lengthOfAudioClip, AudioTrack.MODE_STREAM);
或者您可以查看此link