I think the question says it all: Is it possible to set the window parameters of the current Activity from a service? So in an Activity you have the Method getWindow()
with which it is possible to change the window FLAGs from the Activity. Now I want to call this Method from a Service:
public class WindowService extends Service
{
public WindowService()
{
// get current activity
activity.getWindow().addFlag(FLAG);
}
// other stuff
}