1

Is their anyway to not display the bottom menu bar in my app on the tablet? I was able to get the title bar to disappear using ->

    this.requestWindowFeature(Window.FEATURE_NO_TITLE);

What class am I looking for? Android 3.0.. Is this feature available in any android version?

Thanks

Joey BagODonuts
  • 413
  • 1
  • 4
  • 8

3 Answers3

2

You cannot remove the bottom bar.

Romain Guy
  • 97,993
  • 18
  • 219
  • 200
2

If your device is rooted you can from shell ->

service call activity 79 s16 com.android.systemui

This functionality will break after reboot obviously so call it from your application.

Process proc = Runtime.getRuntime().exec(new String[]{"su","-c","service call activity 79 s16 com.android.systemui"});
proc.waitFor();
Joey BagODonuts
  • 413
  • 1
  • 4
  • 8
0

It is possible in Android 2. Here is a link to a page I found http://sree.cc/google/android/hiding-the-notification-bar-and-title-bar-in-android

As far as I know, there is no way to do this in Android 3.x. What exactly are you trying to achieve by removing the bar?

gammaraptor
  • 1,886
  • 3
  • 14
  • 16