タブ レイアウト内で呼び出されるアクティビティでスピナーを作成しました。
問題は、スピナーとしてではなく、ドロップダウン リストの場合のように、アイテム (番号の 3) が別のダイアログに表示されていることです。私はこの例
に従いました。そして、私が期待していた写真に示されているように、私はこれを取得しています: & this . スピナー内に 3 つのアイテムだけを表示したいのですが、アイテムの新しいダイアログを選択したくありません。そして、2.3.3 エミュレーターと 4.0.3 エミュレーターの両方でコードを試しました。助言がありますか?
ありがとう
質問する
4458 次
1 に答える
4
ドロップダウンとしてのスピナーは、HOLO テーマのものです。最初の画像は HOLO テーマのもので、2 番目と 3 番目の画像はそうではありません。holo テーマは API レベル 11 以降でサポートされています。
ホロテーマを適用したい場合。設定
<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>
および値フォルダー内の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 に答える