在广播接收时区的例子时区、例子

2023-09-07 14:03:58 作者:在线撒娇

我想实现广播接收器时区的变化,但它不工作。我需求量的是,如果我更改时区,将采用撒施接收任何人可以举个例子去到另一个活动

I am trying to implement time zone change in broadcast receiver but its not working .my requirment is if i change the time zone it will go to another activity using broad cast receiver can anybody give example

感谢

推荐答案

在清单:

    <receiver android:name=".TimeZoneChangedReceiver"
        android:enabled="true">
        <intent-filter>
            <action android:name="android.intent.action.TIMEZONE_CHANGED " />
        </intent-filter>
    </receiver>

在你的 TimeZoneChangedReceiver 类:

@Override
public void onReceive(final Context context, final Intent intent) {
    Intent intent = new Intent(....);
    context.startActivity(intent);
}