我的应用程序中的背景音乐无法启动

时间:2012-12-26 16:56:31

标签: android

我正在尝试将背景音乐添加到我的应用中。 我读了很多例子,但我总是遇到同样的问题。音乐无法启动,我没有错误消息。

我有一个讲课背景音乐的课程

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不支持背景音乐?

1 个答案:

答案 0 :(得分:1)

在启动服务之前,应使用Android清单文件声明服务。此过程将在标签内完成,如下所示。

<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >

<service android:name="BackgroundSoundService"  android:enabled="true"></service>
</application>