I have an alarm Receiver which do some work at the time which the user sets in an Activity. I want to make all screen white when the class Receives alarm!! . Is it possible? How can I do that? I have searched in google and found some answers to make application full screen! I don't know what should i search for my goal.
public class AlarmReceiver extends WakefulBroadcastReceiver {
@Override
public void onReceive(Context context, Intent intent) {
// make whole screen white(or any color)
}
}