I want to show a 3-dot overflow menu key (next to the RecentApp virtual key) when creating my application with
android:targetSdkVersion="15"
Here is my story. My application includes two lib projects (only jars + res no source), lib-a uses the menu; when the application was created with target-sdk = 10, it works well, the 3-point icon is displayed next to the RecentApp key in the system navigation panel. Now lib-b has received the update, I have to create an application with target-sdk = 15, but this makes the lib-UI menu disappear. I want lib-a to have a menu as before.
I checked these posts which are very useful,
Android Action Bar menu does not appear when sdk target version is greater than 10
Android theme, fullscreen and action bar
I canβt use ActionBarSherlock and donβt set target-sdk to 10. So I wonder if using an old theme (not a bare theme) will help. I created a theme derived from [android.Theme] for all activities in lib-a (in the xml application manifest), but no luck.
So my question is: can the topic solve the problem?
android android-actionbar android-theme android-menu
brewphone Apr 24 '13 at 15:43 2013-04-24 15:43
source share