java—即使在应用程序关闭时也可以监听时区的变化

83qze16e  于 2021-07-11  发布在  Java
关注(0)|答案(1)|浏览(397)

即使我的android应用程序关闭了,我也在尝试监听时区的变化。

我尝试的是:

我找到了一个意图行动。现在是时区改变了。然而,它是一个受保护的意图,只能由系统发送,正如文档所说,而且它可能不允许隐式广播。
我尝试了alarmmanager,但找不到确切的时区更改事件。
我曾经 schedululeAtFixedRate 在应用程序服务的线程中。它工作得很好。但我不想让它听每一个小时的变化,我只想时区的变化,就像我上面提到的。
编辑:
主要活动

public static final String CHANNEL_ID = "49";

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);
    createNotificationChannel();
    startService(new Intent(this,AppService.class));
}

 private void createNotificationChannel() {
    if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.O) {
        CharSequence c_name = getString(R.string.notification_channel_name);
        String c_desc = getString(R.string.notification_channel_description);
        int importance = NotificationManager.IMPORTANCE_DEFAULT;
        NotificationChannel notificationChannel = new NotificationChannel(CHANNEL_ID,c_name,importance);
        notificationChannel.setDescription(c_desc);
        NotificationManager manager = getSystemService(NotificationManager.class);
        manager.createNotificationChannel(notificationChannel);
    }
}

显示

<?xml version="1.0" encoding="utf-8"?>
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.RECEIVE_BOOT_COMPLETED"/>

<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"
    android:usesCleartextTraffic="true">
    <receiver
        android:name=".TimeChangedReceiver"
        android:enabled="true"
        android:exported="true">

        <intent-filter >
            <action android:name="android.intent.action.TIMEZONE_CHANGED"/>
        </intent-filter>

    </receiver>

    <service
        android:name=".AppService"
        android:enabled="true"
        android:exported="true" />

    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>

接收器类别

package com.example.gridview;

import android.content.BroadcastReceiver;
import android.content.Context;
import android.content.Intent;

import androidx.core.app.NotificationCompat;
import androidx.core.app.NotificationManagerCompat;

public class TimeChangedReceiver extends BroadcastReceiver {

private static int NOTIFICATION_ID = 1;

@Override
public void onReceive(Context context, Intent intent) {
    // TODO: This method is called when the BroadcastReceiver is receiving
    // an Intent broadcast.
    StringBuilder sb = new StringBuilder("Timezone is changed 
    YAY!,executed for "+NOTIFICATION_ID+" times.");
    if (intent.getAction().equals(Intent.ACTION_TIMEZONE_CHANGED)) {
        sb.append("\n Status: Ok.");
    }

    NotificationCompat.Builder builder = new 
    NotificationCompat.Builder(context,MainActivity.CHANNEL_ID)
            .setPriority(NotificationCompat.PRIORITY_DEFAULT)
            .setContentText(sb.toString())
            .setSmallIcon(R.drawable.ic_launcher_background)
            .setContentTitle("Hey!");
    NotificationManagerCompat notificationManager = 
    NotificationManagerCompat.from(context);
    notificationManager.notify(NOTIFICATION_ID,builder.build());
    NOTIFICATION_ID++;
}

}

m3eecexj

m3eecexj1#

您应该为注册清单接收者 "android.intent.action.TIMEZONE_CHANGED" (又名 Intent.ACTION_TIMEZONE_CHANGED ). 这是一个隐含的广播例外,不受android8.0+中注册清单接收者的限制。
这样的清单接收器将是在应用程序未运行时检测此类事件的唯一方法。

相关问题