I\'ve been trying everything I can think of to get my app to display full screen on the Galaxy Tab.
Basically, it works like the Lunar Lander example app that comes
public void onCreate(Bundle savedInstanceState) {
requestWindowFeature(Window.FEATURE_NO_TITLE);
getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,WindowManager.LayoutParams.FLAG_FULLSCREEN);
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
This is working fine for me... try this