Reputation: 3391
I am developing an application with target Sdk 17. My current device is Nexus 7.
My app should be without an action bar so I am using the theme Theme.Holo.NoActionBar on the activity.
I want to show the overflow button (3 dots) at the bottom right (next to the recent task). but I can't make it to be visible. If I return the action bar I see it at the top right, but that's not what I want.
Is there any idea for anyone?
Upvotes: 1
Views: 312
Reputation: 3915
If you are talking about OptionsMenu
button you must use ActionBar
, or you can set android:targetSdkVersion="10"
for your project in manifest file. This will enable compatibility behaviour and you will see menu button near other navigation buttons .
Upvotes: 1