Androidアプリでバックグラウンドミュージックを再生する方法は?
この例は、Androidでバックグラウンドミュージックを再生する方法を示しています。
ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。
ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。
<?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="https://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="https://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デバイスを使用している場合は、アプリにバックグラウンドミュージックを追加する方法があります。そうすれば、使用するアプリは、作業を完了している間、バックグラウンドで再生できるものになります。 アプリのバックグラウンドで再生したいトラックを自由に選択できます。お気に入りの曲でも、リラックスするのに役立つアンビエントミュージックトラックでもかまいません。選択はすべてあなた次第です。 デバイス上のアプリ以
-
AndroidでバックグラウンドでYoutubeビデオを再生する方法
Youtubeは、間違いなく、今日のスマートフォンで最も使用されているアプリの1つです。私たちは皆、お気に入りのチャンネルの動画を見たり、この素晴らしいアプリで音楽を聴いたりするのを楽しんでいます。ただし、スマートフォンでテキストメッセージなどの他の操作をしながら、お気に入りのYouTubeコンテンツをバックグラウンドで再生したい場合があることは間違いありません。または、もっと正確に言えば、旅行中に良い音楽を再生してデバイスをロックしたい場合もあります。 ええと、Youtubeアプリはそれを許可していませんが、この問題を解決する簡単な方法が見つからない場合は、この記事を書きません。そして、最