我在选项卡布局内调用的活动中制作了一个微调器。
问题是项目(3 个)正在单独的对话框中显示,就像下拉列表的情况一样,而不是作为微调器。
我按照这个例子。正如我所期待的图片所示,
但我得到了这个:&这个。我只想在微调器中显示 3 个项目,并且不希望选择项目的新对话框。我已经在 2.3.3 和 4.0.3 模拟器上尝试了我的代码。有什么建议么?
谢谢
问问题
4458 次
1 回答
4
微调器作为下拉菜单是 HOLO 主题。第一个图像是 HOLO 主题,第二个和第三个不是.. 从 api 级别 11 开始支持全息主题..
如果你想应用 Holo 主题。放
<uses-sdk android:minSdkVersion="10" android:targetSdkVersion="17" />
和values-v11文件夹中的styles.XML
<resources>
<!--
Base application theme for API 11+. This theme completely replaces
AppBaseTheme from res/values/styles.xml on API 11+ devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
<!-- API 11 theme customizations can go here. -->
</style>
和values文件夹中的styles.XML
<resources>
<!--
Base application theme, dependent on API level. This theme is replaced
by AppBaseTheme from res/values-vXX/styles.xml on newer devices.
-->
<style name="AppBaseTheme" parent="android:Theme.Light.NoTitleBar">
<!--
Theme customizations available in newer API levels can go in
res/values-vXX/styles.xml, while customizations related to
backward-compatibility can go here.
-->
</style>
<!-- Application theme. -->
<style name="AppTheme" parent="AppBaseTheme">
<!-- All customizations that are NOT specific to a particular API-level can go here. -->
</style>
<style name="progressbar_holo" parent="@android:style/Theme.Light">
</style>
在AndroidMeanifeast.xml
android:theme="@style/AppTheme"
在应用程序标签中。
或
点击这 2 个链接 1. https://github.com/ChristopheVersieux/HoloEverywhere
2. https://github.com/ChristopheVersieux/HoloEverywhere
于 2013-01-08T11:42:45.723 回答