English 中文(简体)
在Honeycomb系统中,遗产菜单是否显示?
原标题:What determines if the legacy menu button shows in Honeycomb system bar?
  • 时间:2011-10-11 03:08:35
  •  标签:
  • android

我的申请有许多活动。 我在宣言中阐述这一点:

<uses-sdk android:minSdkVersion="4"  targetSdkVersion="11"/>

我也建立了一种v11风格,以便所有活动都使用Holo Theme on v11+。

问题在于,我的所有活动都在显示系统条码上的遗产。 我的活动有男子(我使用CreateOptionsMenu)同时显示了遗产菜单和行动条状。 宣传传闻会扩大屏幕上角的菜单。

在我的活动中,没有使用“CreateOptionsMenu”,现在仍然存在一个没有做任何事情的遗产纽州。

我没有能够说明正在发生什么。 Hackborn写道: SdkVersion是控制遗产纽扣的唯一东西:link

Edit: Clarified description of problem.

最佳回答

I see you re doing same mistake as I did.

Your targetSdkVesrion name misses android: prefix, so it s actually ignored. It should be:

<uses-sdk android:minSdkVersion="4" android:targetSdkVersion="11"/>

就在现在,你们的希望将针对第11号案,你们从来就获得了遗产。

Also see related discussions:

  1. Honeycomb themes *.NoActionBar or *.NoTitleBar - where is Menu button?
  2. Android and Honeycomb - how to have a menu icon with SDK 13 without having an "action bar"
问题回答

You will need to add android:showAsAction="ifRoom|withText" to your menu items in XML. This will throw an error unless you build against Android 3.0. When you switch to this version for build make sure you don t use any 3.0 only method calls because it will crash on older versions without compile time errors.





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签