Since this is not possible to do using a public API, I have found a way to do it in a very "hack-ish" way that requires a rooted device.
$ adb pull /system/build.prop .
modify build.prop and edit the lcd_density and make it 240 just like this:
ro.sf.lcd_density=240
Now push the file back into the device and reboot
$ adb push build.prop system/build.prop
$ adb reboot
This will make the operating system believe that the device is a phone, removing the system bar and showing the notification bar, which can be hidden with public apis and themes on the AndroidManifest.xml
Disclaimer: This is needed for Kiosk devices and not to implement it on apps that are published in the Android Market.
Update: as user864555 pointed below, this is another solution
$ adb remount
$ adb shell mv /system/app/SystemUI.odex /system/app/SystemUI.odexold
$ adb shell mv /system/app/SystemUI.apk /system/app/SystemUI.apkold
$ adb reboot
"That code disable the app SystemUI which is the actually menu bar. Which that modification, you will also gain the space of that system bar. But make sure to have a back button or something to exit."
That works great as well. Please vote for his answer. I will try to keep this one updated as much as I can.
Update: Here's a third method. A way to do it programmatically or using the command line. Found here: http://android.serverbox.ch/?p=306
This method requires root access, but you don't need to change the LCD Density, keeping the same as the original, and you can get the UI nav bar back really quick and easy without having to reboot everytime.
The blog post also shows how to implement it on your Android application, remember it requires root, and it might not be a great idea to do so unless your application is running on a kiosk or your own device, please do not implement this method on an app that's published in the Android market or anywhere public.
To stop/remove/disable the system bar (need to be su before issuing this command):
$ service call activity 79 s16 com.android.systemui
To restore the system bar just simply issue this command:
$ am startservice -n com.android.systemui/.SystemUIService
It's that easy. Hopefully ICS gets released soon along with the source code so that anyone can build Android for our Kiosk tablets.