Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to enable bottom menu button in android 4.0 ICS

I want to enable bottom menu button and Which theme will be use for this menu button.I try many theme but did not work for me by the any theme.How can I achieve this?. Thanks in Advance.enter image description here

like image 320
VKSingh Avatar asked Apr 29 '13 04:04

VKSingh


1 Answers

enter image description here

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

Example

<uses-sdk
    android:minSdkVersion="8"
    android:maxSdkVersion="17"
    android:targetSdkVersion="8" />
like image 61
Ronak Mehta Avatar answered Nov 14 '22 23:11

Ronak Mehta