Back to project page PhoneProfiles_Eclipse.
The source code is released under:
Apache License
If you think the Android project PhoneProfiles_Eclipse listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package sk.henrichg.phoneprofiles; //from w w w.j a v a 2 s .com import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class DashClockBroadcastReceiver extends BroadcastReceiver { public static final String INTENT_REFRESH_DASHCLOCK = "sk.henrichg.phoneprofiles.REFRESH_DASHCLOCK"; @Override public void onReceive(Context context, Intent intent) { PhoneProfilesDashClockExtension dashClockExtension = PhoneProfilesDashClockExtension.getInstance(); if (dashClockExtension != null) { GlobalData.loadPreferences(context); dashClockExtension.updateExtension(); } } }