How to enable bottom menu button in android 4.0 ICS

I want to enable the bottom menu button and which theme to use for this menu button. I try a lot of topics, but don't work for me on any topic. How can i do this? Thanks at Advance.enter image description here

+5
source share
3 answers

enter image description here

set android:targetSdkVersion="8"to manifest.xml, Image taken from Samsung galaxy nexus

Example

<uses-sdk
    android:minSdkVersion="8"
    android:maxSdkVersion="17"
    android:targetSdkVersion="8" />
+9
source

If your target-sdk is <4.0, you are not using the support library in your project, and if you have not used it ActionBarSherlock, then this overflow menu should appear automatically, if you redefined the method onOptionCreateMenu(), on phones that have only soft buttons.

0
source

If you set the target value of targetSdkVersion in the manifest to 10 or less, Android assumes that your application depends on the menu button and displays it. Otherwise, the menu items are available in the action bar.

0
source

All Articles