如何在Android应用中播放背景音乐?


此示例演示如何在Android中播放背景音乐。

步骤1 - 在Android Studio中创建一个新项目,转到文件 ⇒ 新建项目,并填写所有必需的详细信息以创建新项目。

步骤2 - 将以下代码添加到res/layout/activity_main.xml。

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   android:gravity="center_horizontal"
   android:orientation="vertical"
   android:padding="16dp">
   <Button
      android:onClick="PlayBackgroundSound"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:text="Run background Sound"/>
   <TextView
      android:layout_marginTop="20dp"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content"
      android:textSize="16sp"
      android:textStyle="bold"
      android:text="Playing Music in Background"/>
</LinearLayout>

步骤3 - 将以下代码添加到src/MainActivity.java

import android.content.Intent;
import android.os.Bundle;
import android.view.View;
import androidx.appcompat.app.AppCompatActivity;
public class MainActivity extends AppCompatActivity {
   @Override
   protected void onCreate(Bundle savedInstanceState) {
      super.onCreate(savedInstanceState);
      setContentView(R.layout.activity_main);
   }
   public void PlayBackgroundSound(View view) {
      Intent intent = new Intent(MainActivity.this, BackgroundSoundService.class);
      startService(intent);
   }
}

步骤4 - 创建一个原始的Android资源文件,复制粘贴您想在后台播放的音频文件(audio.mp3)

步骤5 - 创建一个新的Java类(BackgroundSoundService.java)和以下代码 -

import android.app.Service;
import android.content.Intent;
import android.media.MediaPlayer;
import android.os.IBinder;
import android.widget.Toast;
import androidx.annotation.Nullable;
public class BackgroundSoundService extends Service {
   MediaPlayer mediaPlayer;
   @Nullable
   @Override
   public IBinder onBind(Intent intent) {
      return null;
   }
   @Override
   public void onCreate() {
      super.onCreate();
      mediaPlayer = MediaPlayer.create(this, R.raw.sound);
      mediaPlayer.setLooping(true); // Set looping
      mediaPlayer.setVolume(100, 100);
   }
   public int onStartCommand(Intent intent, int flags, int startId) {
      mediaPlayer.start();
      Toast.makeText(getApplicationContext(), "Playing Bohemian Rashpody in the Background",    Toast.LENGTH_SHORT).show();
      return startId;
   }
   public void onStart(Intent intent, int startId) {
   }
   @Override
   public void onDestroy() {
      mediaPlayer.stop();
      mediaPlayer.release();
   }
   @Override
   public void onLowMemory() {
   }
}

步骤6 - 将以下代码添加到androidManifest.xml

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
   package="app.com.sample">
   <application
      android:allowBackup="true"
      android:icon="@mipmap/ic_launcher"
      android:label="@string/app_name"
      android:roundIcon="@mipmap/ic_launcher_round"
      android:supportsRtl="true"
      android:theme="@style/AppTheme">
      <activity android:name=".MainActivity">
         <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
         </intent-filter>
      </activity>
      <service android:name=".BackgroundSoundService" />
   </application>
</manifest>

让我们尝试运行您的应用程序。我假设您已将您的实际Android移动设备连接到您的计算机。要从Android Studio运行应用程序,请打开您的一个项目活动文件,然后单击工具栏中的运行播放图标图标。选择您的移动设备作为选项,然后检查您的移动设备,它将显示您的默认屏幕 -

更新于:2020年7月8日

6K+ 次查看

启动您的职业生涯

通过完成课程获得认证

开始学习
广告
© . All rights reserved.