Reputation: 21
I have Activity with Theme.Holo.Light.NoActionBar. My manifest setup: targetSdkVersion=17. Menu button is not showing. How I can show menu button at bottom of my Nexus4?
Upvotes: 0
Views: 488
Reputation: 5979
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" />
Upvotes: 1