I'm pretty new with Android programming, started a few weeks ago. Stackoverflow it's my new best fried since android day 1. For the 1st time, I would like to actually ask for help instead of reading it somewhere else, mostly because I can't find the answer to my problem 'anywhere'.
I'm removing system bars at my Android Activity using:
this.requestWindowFeature(Window.FEATURE_NO_TITLE);
this.getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
WindowManager.LayoutParams.FLAG_FULLSCREEN);
Also did a modification on my Manifest to include "@android:style/Theme.NoTitleBar.Fullscreen".
My device, Archos 70 (and I'm forced to work on this one), have an extra bar at the right side, which I can't allow to be enable because I want my App to force fullscreen and dont allow users to go back to home screen (it's a school guide and we want to keep users on the school app).
Any advice on how to remove this extra (per-device) bars?
(I can't post images, but you can see what I'm talking about at http://www.brunotereso.net/temp/bar.jpg
/cheers