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; //w ww .ja v a 2 s. c o m import android.content.BroadcastReceiver; import android.content.Context; import android.content.Intent; public class RefreshGUIBroadcastReceiver extends BroadcastReceiver { public static final String INTENT_REFRESH_GUI = "sk.henrichg.phoneprofiles.REFRESH_GUI"; @Override public void onReceive(Context context, Intent intent) { ActivateProfileActivity activateProfileActivity = ActivateProfileActivity.getInstance(); if (activateProfileActivity != null) activateProfileActivity.refreshGUI(); EditorProfilesActivity editorProfilesActivity = EditorProfilesActivity.getInstance(); if (editorProfilesActivity != null) editorProfilesActivity.refreshGUI(); } }