使用Android应用程序开发麻烦播放声音文件

时间:2011-04-21 00:04:42

标签: android

我是Android开发的新手,我在实现代码并实际播放声音文件方面遇到了问题。我怀疑它可能是由于我的代码中存在问题,但是我已经看了很多,而且我不知道是什么导致了这个问题。 谢谢,安妮

package com.mediaplayer;
import android.app.Activity;
import android.media.MediaPlayer;
import android.os.Bundle;
import android.view.MotionEvent;
import android.view.View;
import android.view.View.OnTouchListener;
import android.widget.Button;
import android.R.raw;
public class PlayPlayer extends Activity implements OnTouchListener {

    private MediaPlayer mp;

    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.main);

        final Button button1 = (Button) this.findViewById(android.R.id.button1);
        button1.setOnTouchListener(this);
            mp = MediaPlayer.create(this, R.raw.music);
            mp.start();

    }

    @Override
    public boolean onTouch(View v, MotionEvent event) {

        switch (event.getAction()) {

        case MotionEvent.ACTION_DOWN:
            mp.setLooping(true);
            mp.start();

        case MotionEvent.ACTION_UP:
            mp.pause();
        }

        return true;
    }

}

1 个答案:

答案 0 :(得分:0)

虽然我从来没有在Android中使用音频,并且假设资源是正确的(R.raw.music),你在开关中遇到问题(没有中断)它应该是这样的:

switch (event.getAction()) {

    case MotionEvent.ACTION_DOWN:
        mp.setLooping(true);
        mp.start();
        break;

    case MotionEvent.ACTION_UP:
        mp.pause();
        break;
    }