Android Question Activity.Addmenu not poping up

tsteward

Well-Known Member
Licensed User
Longtime User
Using activity add menu to create menu doesn't work on all devices.

My Asus Transformer tablet, a clients Motorola Xoom running Android 4.1.2

Pressing the physical Menu button won't raise the menu.
I created a button with Activity.OpenMenu in the onlick event but still no menu.
It does work on my Galaxy S2 and most other devices.

Any idea how I fix this?
 

tsteward

Well-Known Member
Licensed User
Longtime User
The reason I don't set lower SDK is because then Google store wont list app as tablet compatible :( must be 11 or greater.
 
Upvote 0

Nenad Trickovic

Member
Licensed User
Longtime User
I have the same problem on Google Nexus 10 and my manifest look like this

AddManifestText(
<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="14"/>
<supports-screens android:largeScreens="true"
android:normalScreens="true"
android:smallScreens="true"
android:anyDensity="true"/>)
SetApplicationAttribute(android:icon, "@drawable/icon")
SetApplicationAttribute(android:label, "$LABEL$")
 
Upvote 0
Top