Questions tagged [android-holo-everywhere]

HoloEverywhere is an Android open-source library that seeks to backport the Holo themes and widgets to all Android versions back to 2.1, with the support of ActionBarSherlock.

HoloEverywhere is an Android open-source library that seeks to backport the Holo themes and widgets to all Android versions back to 2.1, with the support of ActionBarSherlock.

HoloEverywhere on GitHub

217 questions
2
votes
0 answers

Shadow line above context menu when using HoloEverywhere

I am using HoloEverywhere (and ActionBarSherlock) to create a consistent user interface on all devices. Unfortunately, my app shows a strange thin shadow line above the context menus when running on an ICS (4.0.4) device: Running the same app on a…
2
votes
0 answers

Is it wrong (or a mess) to have ActionBarSherlock + ViewPagerIndicator + HoloEverywhere at the same time?

Short: Generally I'm thinking that having the three (ABS+VPI+HE) as libraries in my project could be something redundant for what I want to achieve, maybe one includes another and there's no need to have the three libraries. Long: I am trying to…
2
votes
4 answers

Can't get Holo look and feel with ProgressDialog using Holoeverywhere

I have imported the libraries, there are no errors or warnings but I can't get it working. This is my ProgressDialog code: pDialog = new…
user1162766
2
votes
2 answers

Implementing Holoeverywhere theme without ActionBarSherlock in my Android app

I am trying to implement the holoeverywhere theme in my app. When I implement the holoeverywhere theme, I get a actionbar by default. I think it is because of Actionbarsherlock library. I was not aware of this library and have implemented my own…
ambit
  • 1,099
  • 2
  • 28
  • 43
2
votes
3 answers

HoloEverywhere SeekBar ClassCastException

I am using the SeekBar class provided by HoloEverywhere. I have the following imports: import org.holoeverywhere.widget.SeekBar; import org.holoeverywhere.widget.SeekBar.OnSeekBarChangeListener; I get no preliminary errors or warnings, but when I…
John Roberts
  • 5,885
  • 21
  • 70
  • 124
2
votes
1 answer

Problems with ActionOverflow and HoloEverywhere/ActionBarSherlock

**I'm probably going to get flamed for this, but I have my reasons. I'm making app has an option to switch between 3 themes (Holo Dark, Holo Light, and Holo Light with Dark ActionBar). Because of certain reasons, I used >>this<< hack to make…
2
votes
2 answers

HoloEverywhere + ListPreference = Crash

I've been struggling to get ListPreference to work with HoloEverywhere. I defined my settings in an XML file. I used the holo namespace for the attributes. Everything that is related to preferences uses classes from the org.holoeverywhere package so…
2
votes
3 answers

HoloEverywhere xml parsing error/Application crashing

For some reason, I'm getting this error when using HoloEverywhere. My application crashes on creation and my xml layouts are not displaying for below 3.0. Here is my xml error. Failed to configure parser for…
2
votes
1 answer

HoloEveryWhere + ActionBarSherlock + SlidingMenu Error

I downloaded latest HoloEveryWhere Then Import from existing code --> library folder --> Properties --> isLibrary --> Ok Then Import from existing code --> Demo folder --> Properties --> addLibrary --> Library And in demo i have i errors, see in…
03uk
  • 69
  • 1
  • 9
2
votes
0 answers

Override color in Android style

I know that with the color generators I can generate styling for most UI elements. Also using the action bar color generator I can create colors for most (if not all) action bar elements. But for some reason alert dialogs still escape those nice…
Budius
  • 39,391
  • 16
  • 102
  • 144
2
votes
1 answer

why do I have to extend S***Activity with HoloEverywhere?

HoloEverywhere seems to work without extending Sherlock classes. Why do I have to change the imports? I've just added: android:theme="@style/Holo.Theme.Sherlock" in the manifest tag and the theme seems to work on the emulator (Android…
Salvatorelab
  • 11,614
  • 6
  • 53
  • 80
2
votes
2 answers

What's a correct way of using HoloEverywhere

I'm trying to use dev branch of HoloEverywhere library to in my app. I understood that this is still during development but the demo seems to work okay so I give it a try. I put android:theme="@style/Holo.Theme.Sherlock.Light" in the activity in my…
RobGThai
  • 5,937
  • 8
  • 41
  • 59
1
vote
1 answer

Can't build the project with Holo Everywhere

All I did was to add HoloEverywhere Library as a library to my project and change in the manifest from android:theme="@android:style/Theme.Holo.NoActionBar.Fullscreen" > to android:theme="@style/Holo.Theme.NoActionBar.Fullscreen" > Now I can't run…
KKO
  • 1,913
  • 3
  • 27
  • 35
1
vote
1 answer

Holo theme not working on splash screen...App crashes

Hi I wanted to add holo theme for my app but when I check my splash graphic layout it doesn't seem to work and my app crashes. I want to add holo theme for whole app. Also I want to get rid of the screen that comes just before the splash screen. I…
Sachi
  • 117
  • 1
  • 1
  • 9
1
vote
2 answers

How to change theme (or style) for PreferenceActivity

I am using holoeverywhere. I have created my own theme for my app and I can apply this theme to my activities with success. My theme changes drawables for CheckBox, EditText, DatePicker and so on. The problem is that this theme does npot work for…
user3104537