Android8.0です。
以下のコードではうまく動きません。
色々調べてみたのですが、解決策が見当たりません。
よろしくお願いします。
kotlin
1class BroadcastReceiver : BroadcastReceiver() { 2 override fun onReceive(context: Context, intent: Intent) { 3 if (Intent.ACTION_BOOT_COMPLETED.equals(intent.getAction())) { 4 Toast.makeText(context, "ACTION_BOOT_COMPLETED", Toast.LENGTH_SHORT).show() 5 6 } 7 if (Intent.ACTION_REBOOT.equals(intent.getAction())) { 8 Toast.makeText(context, "ACTION_REBOOT ", Toast.LENGTH_SHORT).show() 9 } 10 } 11
xml
1<?xml version="1.0" encoding="utf-8"?> 2<manifest xmlns:android="http://schemas.android.com/apk/res/android" 3 package="hoge"> 4 5 <uses-permission android:name="android.permission.ACTION_BOOT_COMPLETED" /> 6 <uses-permission android:name="android.permission.ACTION_REBOOT" /> 7 8 <uses-permission android:name="android.permission.FOREGROUND_SERVICE" /> 9 <uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW" /> 10 11 <application 12 android:name=".AppApplication" 13 android:allowBackup="true" 14 android:icon="@drawable/ic_baseline_child_care_24" 15 android:label="@string/app_name" 16 android:roundIcon="@drawable/ic_baseline_child_care_24" 17 android:supportsRtl="true" 18 android:theme="@style/AppTheme"> 19 <activity 20 android:name=".views.MainActivity" 21 android:label="@string/app_name" 22 android:launchMode="singleInstance" 23 android:theme="@style/AppTheme.NoActionBar"> 24 <intent-filter> 25 <action android:name="android.intent.action.MAIN" /> 26 27 <category android:name="android.intent.category.DEFAULT" /> 28 <category android:name="android.intent.category.LAUNCHER" /> 29 </intent-filter> 30 </activity> 31 32 <receiver 33 android:name=".receiver.BroadcastReceiver" 34 android:enabled="true" 35 android:exported="true"> 36 <intent-filter> 37 <category android:name="android.intent.category.DEFAULT" /> 38 39 <action android:name="android.intent.action.BOOT_COMPLETED" /> 40 <action android:name="android.intent.action.QUICKBOOT_POWERON" /> 41 <action android:name="android.intent.action.LOCKED_BOOT_COMPLETED" /> 42 <action android:name="android.intent.action.REBOOT" /> 43 </intent-filter> 44 </receiver> 45 </application> 46 47</manifest>
起動時とは「端末本体を再起動したときなどの状態」を指すで良いでしょうか。
また、Toastを出したいと言っているのはアプリ内ではなく、ホーム画面に出したいと言うことでしょうか。
(Androidで起動時にToastを出したい→端末本体を起動したときにホーム画面にToastを出したい?)
あなたの回答
tips
プレビュー