AppWidgetProviderでブロードキャスト(TIME_TICK)を受信したい。
kotlinで分単位でカウントする時計のウィジェットアプリを作成しています。
1分単位なのでシステムブロードキャストの[TIME_TICK]を使い更新を行いたい。
onReceiveでブロードキャスト(TIME_TICK)を受信できない。
エミュレータで実行しても、1分ごとにonReceiveが呼び出されない。 下に[AppWidgetProvider]のソースコードと[AndroidManifest]を記載しています。
ClockWiget.kt (AppWidgetProvider)
kotlin
1package com.test.clockwidget.testclock 2 3import android.appwidget.AppWidgetManager 4import android.appwidget.AppWidgetProvider 5import android.content.ContentValues 6import android.content.ContentValues.TAG 7import android.content.Context 8import android.content.Intent 9import android.util.Log 10 11class ClockWidget : AppWidgetProvider() { 12 13 override fun onUpdate( 14 context: Context, 15 appWidgetManager: AppWidgetManager, 16 appWidgetIds: IntArray 17 ) { 18 Log.i(ContentValues.TAG,"onUpdate-LOG") 19 20 for (appWidgetId in appWidgetIds) { 21 updateAppWidget(context, appWidgetManager, appWidgetId) 22 } 23 } 24 25 override fun onEnabled(context: Context) { 26 Log.i(ContentValues.TAG,"onEnabled-LOG") 27 } 28 29 override fun onDisabled(context: Context) { 30 Log.i(ContentValues.TAG,"onDisabled-LOG") 31 } 32 33 override fun onReceive(context: Context?, intent: Intent?) { 34 val action = intent?.action 35 if (action.equals("android.intent.action.TIME_TICK")) { 36 Log.i(ContentValues.TAG,"TIME_TICK-LOG"); 37 } 38 super.onReceive(context, intent) 39 } 40 41 internal fun updateAppWidget( 42 context: Context, 43 appWidgetManager: AppWidgetManager, 44 appWidgetId: Int 45 ) { 46 Log.i(ContentValues.TAG,"updateAppWidget-LOG") 47 } 48}
AndroidManifest.xml
xml
1<?xml version="1.0" encoding="utf-8"?> 2<manifest 3 xmlns:android="http://schemas.android.com/apk/res/android" 4 package="com.test.clockwidget.testclock"> 5 <application 6 android:allowBackup="true" 7 android:icon="@mipmap/ic_launcher" 8 android:label="@string/app_name" 9 android:roundIcon="@mipmap/ic_launcher_round" 10 android:supportsRtl="true" 11 android:theme="@style/Theme.TestClock"> 12 <receiver android:name=".ClockWidget"> 13 <intent-filter> 14 <action android:name="android.intent.action.TIME_TICK"/> 15 <action android:name="android.appwidget.action.APPWIDGET_UPDATE" /> 16 </intent-filter> 17 <meta-data 18 android:name="android.appwidget.provider" 19 android:resource="@xml/test_clock_widget_info" /> 20 </receiver> 21 <activity android:name=".MainActivity"> 22 <intent-filter> 23 <action android:name="android.intent.action.MAIN" /> 24 <category android:name="android.intent.category.LAUNCHER" /> 25 </intent-filter> 26 </activity> 27 </application> 28</manifest>
試したこと
システムブロードキャスト
TIME_TICK以外にもACTION_BATTERY_CHANGEDなどに変更して動作確認したが、同様に受信できなかった。
AlarmManagerの使用も考えたが、少し時間がずれたりしたため、うまく動作させれなかった。
補足情報(FW/ツールのバージョンなど)
AndroidStudio 4.2.2
kotlin 1.5.21
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。