Music.java
上传用户:xmjingguan
上传日期:2009-07-06
资源大小:2054k
文件大小:1k
源码类别:

android开发

开发平台:

Java

  1. /***  * Excerpted from "Hello, Android!",  * published by The Pragmatic Bookshelf.  * Copyrights apply to this code. It may not be used to create training material,   * courses, books, articles, and the like. Contact us if you are in doubt.  * We make no guarantees that this code is fit for any purpose.   * Visit http://www.pragmaticprogrammer.com/titles/eband for more book information. ***/ package org.example.sudoku;
  2. import android.content.Context;
  3. import android.media.MediaPlayer;
  4. public class Music {
  5.    private static MediaPlayer mp = null;
  6.    
  7.    /** Stop old song and start new one */
  8.    public static void play(Context context, int resource) {
  9.       stop(context);
  10.       // Start music only if not disabled in preferences
  11.       if (Prefs.getMusic(context)) {
  12.          mp = MediaPlayer.create(context, resource);
  13.          mp.setLooping(true);
  14.          mp.start();
  15.       }
  16.    }
  17.    
  18.    /** Stop the music */
  19.    public static void stop(Context context) {        if (mp != null) {
  20.          mp.stop();
  21.          mp.release();
  22.          mp = null;
  23.       }
  24.    }
  25. }