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
0
votes
1 answer

Is it possible to test thru ActivityUnitTestCase a org.holoeverywhere.Activity?

I am coding my first ui test using holoEverywhere, I want to test a Activity which extends from org.holoeverywhere.app.Activity and I have this problem... I tried to in the target app manifest this And also in the manifest of the unit test…
garlic
  • 23
  • 4
0
votes
0 answers

Project compiles successfully, but I get exception about missing drawable

I had my project running in Eclipse, I tried converting it to Android Studio. However, I also downloaded (via github) the latest HoloEverywhere library, and updated contrib/ with ActionBarSherlock library ( I use them both ). Everything compiles…
0
votes
1 answer

How to create to HoloEverywhere SliderMenu with more than one activity in it?

i am using holoeverywhere + ABS + ViewPager. I have an activity(mainactivity) with 3 actionbar tabs(fragments) in it and i need to implement slider addon from holoeverywhere to my project which switches between mainactivity(which has tabs in it) and…
Mehdi Fanai
  • 4,021
  • 13
  • 50
  • 75
0
votes
1 answer

HoloEverywhere PopupMenu wrong background while scrolling

I'm using HoloEverywhere to create PopupMenu on 2.x devices. Everything is created just fine but when I want to scroll in the menu (even when the menu is not scrolling) the background of items are changed from gray to white and stay like that. I'm…
Warlock
  • 2,481
  • 4
  • 31
  • 45
0
votes
2 answers

Using holoeverywhere

I am trying to install holoeverywhere to ADT using instructions from https://github.com/Prototik/HoloEverywhere/wiki/Import-in-IDE#eclipse Unfortunately this ends with: No valid Android XML Editor Delegate found for file /HoloEverywhere Addon…
ssuukk
  • 8,200
  • 7
  • 35
  • 47
0
votes
1 answer

actionbar does not refresh tab selection

I use a TabSwipeFragment from HoloEverywhere. In this, I use 3 tabs. The third tab should not be accessible every time. So I use a TabSelectedListener to check this: this.setOnTabSelectedListener(new OnTabSelectedListener(){ @Override …
svennergr
  • 800
  • 1
  • 8
  • 26
0
votes
1 answer

Tab navigation in new HoloEverywhere not displays fragment after screen rotation

Yesterday I downloaded new HoloEverywhere library. Currently, I have problem with tab navigation after screen rotation. My Home Activity: public class MainActivity extends Activity implements TabListener { @Override protected void…
0
votes
2 answers

ProGuard and HoloEverywhere: Export Signed Application Errors

I'm using ActionBarSherlock and HoloEverywhere in my project. Everything works perfectly, except when I try to export my signed application, ProGuard gives me grief: [2013-05-19 00:13:53 - ] Proguard returned with error code 1. See…
John Roberts
  • 5,885
  • 21
  • 70
  • 124
0
votes
2 answers

Unable to start activity ComponentInfo{...MainActivity}: java.lang.NullPointerException

I would like to build an app which uses HoloEverywhere. I import HoloEverywhere and ActionBarSherlock as described in this manual. MainActivity: import org.holoeverywhere.app.*; import android.os.Bundle; public class MainActivity extends Activity …
David
  • 4,027
  • 10
  • 50
  • 102
0
votes
2 answers

Unable to execute dex error in console window

I would like to build an app which uses HoloEverywhere. I import HoloEverywhere and ActionBarSherlock as described in this manual. Then I create a new project, according to the following steps: Create a new Android project Right Click on project ->…
David
  • 4,027
  • 10
  • 50
  • 102
0
votes
2 answers

Holo theme and custom background for my button

I have some problems to add the blue color over the button when the user press it. It works if there is no drawable in background for this button but in my case, i have to add a custom background and i want the blue color when the user clicks on the…
mrroboaat
  • 5,602
  • 7
  • 37
  • 65
0
votes
1 answer

Memory leak due to IAddon class in HoloEverywhere

It looks like I have a memory leak preventing my activities from being garbage collected. I did a memory dump and MAT shows that I have several instances of each activity. Consequently, my app crashes often due to memory leaks. Under MAT, I can see…
0
votes
1 answer

Holoeverywhere tabs load the first one when I slide over the last tab?

Recently, I am using holoeverywhere to do something, but now I am facing a problem that when I keep sliding to right after reaching the last tab, the program will load the first tab's view but there is no more tabs, so the program will crash. The…
0
votes
2 answers

ListFragment is empty after going back

I have a simple activity built with HoloEverywhere with one fragment container. ListFragment appears there on start, and appears normally. Then, click on list item replaces ListFragment with another fragment and adds it to backstack. But when I'm…
0
votes
1 answer

How to change the color of holoeverywhere tabs?

The holoeverywhere's demo is like this: How to change the background's color of the tabs and the color of line under the tabs?