私は、ユーザーによって殺されるまで、バックグラウンドでサウンドを再生する単純なアプリを開発しています。問題は、Chromeで30〜40個以上のタブを開いたときに音の再生が停止し、アプリを再度開く必要があることです。多くのクロムタブを開いてもアプリが機能しなくなるのはなぜですか?
スマートフォンには1GbのRAMしかありませんが、Chromeで100個以上のタブを開いても多くの音楽プレーヤーが動作することに気付いています。
これはコードである:
PlayerService.class:
public class PlayerService extends Service
{
MediaPlayer mediaPlayer = null;
@Override
public IBinder onBind(Intent intent) {
return null;
}
@Override
public void onCreate() {
mediaPlayer = MediaPlayer.create(this, R.raw.song);
}
@Override
public int onStartCommand(Intent intent, int flags, int startId) {
if (!mediaPlayer.isPlaying()) {
mediaPlayer.start();
}
return START_STICKY;
}
public void onDestroy() {
if (mediaPlayer.isPlaying()) {
mediaPlayer.stop();
}
mediaPlayer.release();
Log.i("PROVA SERVICE", "Distruzione Service");
}
}
MainActivity.class:
public class MainActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
}
public void play(View v)
{
startService(new Intent(this, PlayerService.class));
}
public void stop(View v)
{
stopService(new Intent(this, PlayerService.class));
}
...
activity_main.xml:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent" android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
android:paddingBottom="@dimen/activity_vertical_margin" tools:context=".MainActivity">
<TextView android:text="Play!" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:onClick="play"
android:id="@+id/textView"
android:layout_centerHorizontal="true"
android:textStyle="bold"
android:textSize="20dp" />
<TextView android:text="Stop!" android:layout_width="wrap_content"
android:layout_height="wrap_content" android:onClick="stop"
android:layout_below="@+id/textView"
android:layout_centerHorizontal="true"
android:layout_marginTop="50dp"
android:textSize="20dp"
android:textStyle="bold" />
</RelativeLayout>
が、私は明らかにマニフェストにサービスを追加しました:だから、
<service android:name="PlayerService"/>
を、問題は何ですか?
はい、正しいとはいえ、とにかくシステムによって終了させることができます。サービスがフォアグラウンドで実行されている場合は、ツールバーに通知を設定してユーザーに通知する必要があります。 – Mikhail
通常はすぐにアプリを殺すことはありません – Krish