我正在尝试将背景音乐添加到我的应用程序中。我读了很多例子,但我总是遇到同样的问题。音乐没有开始,我也没有错误信息。
我有一门管理背景音乐的课程
import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;
public class BackgroundSoundService extends Service {
private static final String TAG = null;
MediaPlayer player;
public IBinder onBind(Intent arg0) {
return null;
}
@Override
public void onCreate() {
super.onCreate();
player = MediaPlayer.create(this, R.raw.jingle);
player.setLooping(true); // Set looping
player.setVolume(100,100);
player.start();
}
@Override
public void onStart(Intent intent, int startId) {
super.onStart(intent, startId);
}
public void onDestroy() {
super.onDestroy();
}
protected void onNewIntent() {
player.pause();
}
}
而且,在我的主类中,在 onCreate 方法中,我使用
Intent svc=new Intent(this, BackgroundSoundService.class);
startService(svc);
这是我的清单
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.giocobambini"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk
android:minSdkVersion="8"
android:targetSdkVersion="16" />
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.giocobambini.MainActivity"
android:label="@string/app_name" >
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name="com.example.giocobambini.BackgroundSoundService"
android:label="@string/title_activity_background_sound_service" >
</activity>
</application>
</manifest>
也许问题是 minSdkVersion="8"!!也许不支持 minSdkVersion 8 背景音乐?