4

HoloEverywhere を使用しようとしていますが、インストール方法がわかりません。このGitHub ページに記載されている内容に従いました。私はたくさんのエラーを受け取ります。これをAndroid 2.3.3 API 10で動作させる方法を知っている人はいますか? 私は Android 開発者ツール ビルドを実行しています: v21.1.0-569685

4

2 に答える 2

0

ちょっとこれを試してみてください:(あなたのために働くものがあるかもしれないので、多くの答えを与えてください):-

      android:theme=“@style/Theme.Holo
               // or if you want to use the Holo light theme:
      android:theme=“@style/Theme.Holo.Light

これも:

  Theme.Holo and Theme.Holo.Light have been available since API level 11, but Theme.Holo.Light.DarkActionBar is new in API level 14.


      res/values/themes.xml:

                <resources>
                     <style name="MyTheme" parent="@android:style/Theme">
               <!-- Any customizations for your app running on pre-3.0 devices here -->
               </style>
               </resources>


      res/values-v11/themes.xml:

                  <resources>
                       <style name="MyTheme" parent="@android:style/Theme.Holo">
                         <!-- Any customizations for your app running on devices with Theme.Holo here -->
                        </style>
                        </resources>



              Finally, in AndroidManifest.xml:


                          <!-- [...] -->
                 <application android:name="MyApplication"
                       android:label="@string/application_label"
                       android:icon="@drawable/app_icon"
                       android:hardwareAccelerated="true"
                        android:theme="@style/MyTheme">
                           <!-- [...] -->

そして活動中:

             <activity
                  android:name=".login"
                 android:label="@string/login"
                android:noHistory="true"
                  android:theme="@android:style/Theme.Holo.Light"/>

              <activity
                android:name=".Preferences"
                    android:theme="@android:style/Theme.Holo.Light" >
于 2013-07-22T04:58:02.363 に答える