HoloEverywhere Eclipse Install

I am trying to use HoloEverywhere and cannot figure out how to install it. I followed what was pointed out on this GitHub page. I just get a lot of mistakes. Does anyone know how to make this work with Android 2.3.3 API? I am using Android Developer Tools Build: v21.1.0-569685

+4
source share
2 answers

Just upgrade your Eclipse ADT and Android SDK and follow these steps.

  • Enter https://github.com/Prototik/HoloEverywhere
  • Click Download ZIP
  • Unzipped file uploaded
  • Open ADT
  • Choose File> Import> Android> Existing Android Code. Workspace> Next
  • In the root directory, click Browse ... and find the folder that you created in step 3
  • Open this folder and select the library folder, then click "Open"
  • Then click "Finish" and wait for the download.
  • Right-click an existing project and select Properties> Android> click Add ...
  • Select the HoloEverywhere library and click OK, click OK in the Window properties
+1
source

Hey, just try this: (giving a lot of answers, since maybe one of them works for you): -

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

also:

  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"> <!-- [...] --> 

and in action:

  <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" > 
0
source

All Articles