Marcos Miguez
Marcos Miguez

Reputation: 115

Remove 'menu' on Android application

Im making one application Android 2.3.3 compatible. All my activities have one bottom menu:

I've tried many things, but I can't hide this menu. Does anyone know how to hide it?

If I override the 'onCreateOptionsMenu' method I can add more options, but it was all that I got.

The menu appears at the bottom as you can see in the below screenshot.

enter image description here

Upvotes: 0

Views: 72

Answers (1)

CommonsWare
CommonsWare

Reputation: 1007584

Set your targetSdkVersion to be 14 or higher. Since you are still using the legacy Eclipse environment, that would be the android:targetSdkVersion attribute in you manifest.

Upvotes: 2

Related Questions