有 Java 编程相关的问题?

你可以在下面搜索框中键入要查询的问题!

java Android:AudioTrack无法正常工作

我想用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中查看时,它正好是原始文件的大小。 我是安卓新手,不知道如何使用AudioTrack

提前谢谢


共 (1) 个答案

  1. # 1 楼答案

    你可以更改代码

    AudioTrack at = new AudioTrack(AudioManager.STREAM_MUSIC, 44100, AudioFormat.CHANNEL_CONFIGURATION_MONO, AudioFormat.ENCODING_PCM_16BIT, lengthOfAudioClip, AudioTrack.MODE_STREAM);    
    

    或者你可以检查这个link