Android
 Computer >> コンピューター >  >> プログラミング >> Android

Kotlinを使用して常にバックグラウンドでAndroidサービスを実行するにはどうすればよいですか?


この例は、Kotlinを使用して常にバックグラウンドでAndroidサービスを実行する方法を示しています。

ステップ1 − Android Studioで新しいプロジェクトを作成し、ファイルに移動しますか?新しいプロジェクトを作成し、必要なすべての詳細を入力して新しいプロジェクトを作成します。

ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="https://schemas.android.com/apk/res/android"
   xmlns:tools="https://schemas.android.com/tools"
   android:layout_width="match_parent"
   android:layout_height="match_parent"
   tools:context=".MainActivity">
<TextView
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_centerHorizontal="true"
   android:layout_marginTop="50dp"
   android:text="Tutorials Point"
   android:textAlignment="center"
   android:textColor="@android:color/holo_green_dark"
   android:textSize="32sp"
   android:textStyle="bold" />
<Button
   android:id="@+id/button"
   android:layout_width="wrap_content"
   android:layout_height="wrap_content"
   android:layout_centerInParent="true"
   android:text="Click here to start background Service"
   android:textSize="16sp"
   android:textStyle="bold" />
</RelativeLayout>

ステップ3 −新しいKotlinクラスMyService.ktを作成し、次のコードを追加します

import android.app.Service
import android.content.Intent
import android.os.IBinder
import android.widget.Toast
class MyService : Service() {
   override fun onStartCommand(intent: Intent, flags: Int, startId: Int): Int {
      onTaskRemoved(intent)
      Toast.makeText(
      applicationContext, "This is a Service running in Background",
      Toast.LENGTH_SHORT
      ).show()
      return START_STICKY
   }
   override fun onBind(intent: Intent): IBinder? {
      // TODO: Return the communication channel to the service.
      throw UnsupportedOperationException("Not yet implemented")
   }
   override fun onTaskRemoved(rootIntent: Intent) {
      val restartServiceIntent = Intent(applicationContext, this.javaClass)
      restartServiceIntent.setPackage(packageName)
      startService(restartServiceIntent)
      super.onTaskRemoved(rootIntent)
   }
}

ステップ4 −次のコードをsrc / MainActivity.kt

に追加します
import android.content.Intent
import android.os.Bundle
import android.widget.Button
import androidx.appcompat.app.AppCompatActivity
class MainActivity : AppCompatActivity() {
   override fun onCreate(savedInstanceState: Bundle?) {
      super.onCreate(savedInstanceState)
      setContentView(R.layout.activity_main)
      title = "KotlinApp"
      val button: Button = findViewById(R.id.button)
      button.setOnClickListener { startService(Intent(applicationContext, MyService::class.java)) }
   }
}

ステップ5 −次のコードをandroidManifest.xmlに追加します

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="https://schemas.android.com/apk/res/android" package="com.example.q11">
   <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=".MyService"
      android:enabled="true"
      android:exported="true" />
   </application>
</manifest>

アプリケーションを実行してみましょう。実際のAndroidモバイルデバイスをコンピューターに接続していると思います。 Android Studioからアプリを実行するには、プロジェクトのアクティビティファイルの1つを開き、[実行]アイコンをクリックします ツールバーからKotlinを使用して常にバックグラウンドでAndroidサービスを実行するにはどうすればよいですか? 。オプションとしてモバイルデバイスを選択し、デフォルトの画面を表示するモバイルデバイスを確認します

Kotlinを使用して常にバックグラウンドでAndroidサービスを実行するにはどうすればよいですか?

Kotlinを使用して常にバックグラウンドでAndroidサービスを実行するにはどうすればよいですか?



  1. 常にバックグラウンドでAndroidサービスを実行するにはどうすればよいですか?

    この例は、Androidサービスを常にバックグラウンドで実行する方法を示しています。 ステップ1 − Android Studioで新しいプロジェクトを作成し、[ファイル]⇒[新しいプロジェクト]に移動して、新しいプロジェクトを作成するために必要なすべての詳細を入力します。 ステップ2 −次のコードをres / layout/activity_main.xmlに追加します。 <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http:

  2. Windows11で常にバックグラウンドでWSAを実行する方法

    Windows Subsystem for Android(WSA)をバックグラウンドで実行したい場合 Windows 11では、この記事でプロセスを説明します。 Androidアプリをすばやく開くことができるように、Windows11でAndroid用のWindowsサブシステムを常にバックグラウンドで実行することができます。 Android用Windowsサブシステムを使用すると、Windows 11でAndroidアプリを実行できます。コンピューターでアプリを実行すると、仮想マシンと他のすべてのプロセスがバックグラウンドで実行されます。プロセス全体に時間がかかるため、コンピューターでA