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
1
vote
1 answer

ActionBar exactly like Facebook app

I want to build a single-line action bar exactly like in fb, with tabs embedded inside the actionbar in form of icons at center so that when user swipes page the next icon is highlighted. I'm using HoloEverywhere lib which uses actionbarsherlock…
1
vote
1 answer

AlertDialog Holoeverywhere crashes?

i'm learn holoeverywhere library >> https://github.com/Prototik/HoloEverywhere/ i'm try alertdialog, but i get crashes .. this the error .......... 01-25 10:45:52.799: E/AndroidRuntime(12308): FATAL EXCEPTION: main 01-25 10:45:52.799:…
Amay Diam
  • 2,561
  • 7
  • 33
  • 57
1
vote
2 answers

How can I make a ListView clickable? (NOT item clicks!)

I use an Adapter with a ListView... I want to trigger the ListView click and disable item clicks (visually) In my Adapter I do something like to disable visual click feedback: @Override public View getView(int pos, View convertView, ViewGroup…
prom85
  • 16,896
  • 17
  • 122
  • 242
1
vote
1 answer

Importing HoloEverywhere to existing project as Library

I'm trying to import HoloEverywhere i've downloaded it into my eclipse and tried to import it as a library properties -> on the Android tab -> add library and then extend my SherlockFragmentActivity to org.holoeverywhere.app.Activity just as the…
Libathos
  • 3,340
  • 5
  • 36
  • 61
1
vote
1 answer

Library project with ActionBarCompat and app with HoloEverywhere, can they live together?

I'm developing an application that uses the popular HoloEverywhere library to use ActionBarCompat and get Holo visual style in pre-3.0 devices. It is working perfectly fine. Now I need to integrate a third-party library project in my application but…
1
vote
0 answers

Cannot find symbol method getActionProvider(MenuItem) in MenuItemCompat using Holoeverywhere in Android Studio

I am using Holoeverywhere and attempting to get the ActionView and ActionProvider in my onCreateOptionsMenu method, but gradle complains that both the getActionProvider and getActionView method symbols can not be found in MenuItemCompat. This sounds…
1
vote
0 answers

conflict Holoeverywhere with PullTorefresh listview

I learning holoeverywhere library (https://github.com/Prototik/HoloEverywhere) on my app, but i get issue when combine with PullToRefresh Library (https://github.com/johannilsson/android-pulltorefresh), how to fix it ? issue Unable to start…
bukanamay
  • 577
  • 5
  • 11
  • 26
1
vote
1 answer

Holo theme for AppCompat library

I have used the ActionBarSherlock+HoloEverywhere combination for a while, and it is working good. However, the time has come to migrate to the official Google AppCompat library. If I am right, the latest version of HoloEverywhere should work with…
1
vote
1 answer

Can anyone helpme to set up HoloEverywhere on android studio

I followed the tutorial from HoloEverywhere in the Git page: Android Studio / IntelliJ IDEA Checkout from Version Control - Git Typo in Repository URL: https://github.com/Prototik/HoloEverywhere.git Press 'Clone', wait until repository checkout If…
Oscar Méndez
  • 937
  • 2
  • 13
  • 39
1
vote
0 answers

Using HoloEveryWhere and RoboGuiuce Activity

I import HoloEveryWhere and HoloEverywhere Addon Roboguice then i added HoloEveryWhere to the HoloEverywhere Addon Roboguice and every thing is fine no error.In my project i added HoloEverywhere Addon Roboguice . Now if i want to make an Activity…
user4o01
  • 2,688
  • 4
  • 39
  • 54
1
vote
2 answers

_HoloActivity$HoloThemeException: You must apply Holo.Theme, Holo.Theme.Light or Holo.Theme.Light.DarkActionBar theme

I'm using HoloEverywhere-1.6.8. I have a custom theme that is based upon Holo.Theme. I'm getting the crash below but it is only appearing for the following devices: Galaxy Tab…
William
  • 20,150
  • 8
  • 49
  • 91
1
vote
1 answer

HoloEverywhere error in first line or not working VCS to Git connection

I want to use the HoloEveryWhere theme and was reading introduction guide, but I have problems with the first line. I can't clone it because "Clone failed: Failed to start Git process" or "Repository test has failed", but I don't know what is wrong.…
Papi
  • 97
  • 2
  • 9
1
vote
0 answers

Sherlock Action Bar: Apply style for 3.0 and 2.3

I am trying to add my style for an action bar that I have in my code. I want them to look identical over all platforms. The issue right now is that my buttons, alertdialogs, and action bar (to name a few) are not the same from 2.3 to 4.1. I want the…
1
vote
1 answer

Android spinnerStyle not working

First excuse me for my english. Im designing a theme (With HoloEveryWhere) and im trying to style default spinner. The problem is that the spinnerStyle is not working. I'm testing with this layout.
jjalonso
  • 691
  • 5
  • 17
1
vote
1 answer

findViewById in DialogFragment returns null on 2.3.3 devices

In my project I am using this library, a DatePickerDialog, together with HoloEverywhere and a few other minor view libraries. My problem is, that I am getting a NullPointerException when I try to create this dialog only on 2.3.3 devices. The weird…