You can hide the bottom bar. But there is no direct method available. First you need to root the tab and then run the process to hide the bar. If you root the tab then the warranty will be void. And there is no unique method to root the tab (getting super user privileges), different tabs have different methods. And once you have rooted the tab, then you should do
//hide status bar
process = Runtime.getRuntime().exec(new String[]{"su","-c","service call activity 79 s16 com.android.systemui"});
process.waitFor();
//show status bar
process = Runtime.getRuntime().exec(new String[]{"am","startservice","-n","com.android.systemui/.SystemUIService"});
process.waitFor();
But this will work only for HoneyComb. For ICS and above try to find the code to hide status bar.