i’ve got (i hope) a little issue doing some development for Google TV
what I am trying to do is I want to be able to show a small window in the bottom-right corner, This is fine.. The issue is i’m unsure how to get rid of the screen saver in the background
This is the code I have at the moment.
public void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_eyece_box_window);
final WindowManager.LayoutParams params = new WindowManager.LayoutParams(
WindowManager.LayoutParams.TYPE_SYSTEM_ALERT,
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE
| WindowManager.LayoutParams.FLAG_NOT_TOUCH_MODAL
| WindowManager.LayoutParams.FLAG_NOT_TOUCHABLE);
params.gravity = Gravity.RIGHT | Gravity.BOTTOM;
params.width = 300;
params.height = 500;
this.getWindow().setAttributes(params);
}
So really what i want the application to do is show above the stack

I think my best solution for this is to basically scrap it and build it on a custom dialog box