You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 5, 2018. It is now read-only.
Sergey Shatunov edited this page Jan 28, 2014
·
4 revisions
First, extend all your Activities from org.holoeverywhere.app.***Activity
If you are using android.support.v4.app.FragmentActivity or com.actionbarsherlock.app.SherlockFragmentActivity - use org.holoeverywhere.app.Activity instead.
Also extend all Fragments from org.holoeverywhere.app.***Fragment
If you have a custom Application class then extend it from org.holoeverywhere.app.Application.
If not - add next line:
android:name="org.holoeverywhere.app.Application"
to your <application> tag in manifest.
See list of widgets in org.holoeverywhere.widget package and sure that you use it, not pure widgets.
For example, you should use org.holoeverywhere.widget.Spinner instead android.widget.Spinner,
org.holoeverywhere.widget.ListView instead android.widget.ListView