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
2 answers

HoloEverywhere AutoCompleteTextView java.lang.ClassCastException

I am trying to get the HoloEverywhere class AutoCompleteTextView to work with my app. The main reason for this is I want the Holo theme to work on pre 3.0 devices (specifically API levels 8-10) Here is my main activity code: package…
nommer
  • 2,730
  • 3
  • 29
  • 44
0
votes
1 answer

HoloEverywhere pom.xml error

I'm trying to setup HoloEverywhere along side Action Bar Sherlock and I'm getting the following error. Could not find artifact org.holoeverywhere:resbuilder:pom:1.5.1-SNAPSHOT pom.xml /HoloEverywhere Library line 1 Maven pom Loading…
0
votes
2 answers

Implementing HoloEverywhere error No resource identifier found

The following error occurs when I build my project: [2013-04-03 03:52:49 - mydemoapp] D:\My Projects\HoloEverywhere Library\res\layout\time_picker_holo.xml:17: error: No resource identifier found for attribute 'importantForAccessibility' in…
Alex
  • 1,639
  • 3
  • 18
  • 33
0
votes
1 answer

HoloEverywhere error in implementation with ActionBarSherlock

After importing Sherlock successfully, I am implementing HoloEverywhere. The only problems i'm facing are as shown in the image below, android.support.v4.app compilation error and pom.xml error too. These errors are showing up even after importing…
Alex
  • 1,639
  • 3
  • 18
  • 33
0
votes
1 answer

Can't cast Holoeverywhere application to getapplicationcontext

I have extended the application class to add some preference to my app, i started to implement holoeverywhere, and now i'm getting this error: 03-28 10:39:10.020: E/AndroidRuntime(12511): java.lang.ClassCastException:…
Edgar
  • 467
  • 1
  • 8
  • 23
0
votes
2 answers

Activity as dialog using HoloEverywhere cuts off layout

I'm using the HoloEverywhere library in my Android app to ensure a consistent theme across all supported devices. However, I'm running into trouble with activities that utilize Holo.Theme.Dialog: on my Android 2.2 emulator it displays correctly, but…
JstnPwll
  • 8,585
  • 2
  • 33
  • 56
0
votes
0 answers

HoloEverywhere layout folder full of resource errors?

I'm using both ActionBarSherlock and HoloEverywhere as libraries in my project, and suddenly HoloEverywhere started messing up. I made an AlertDialog like this: AlertDialog.Builder alert = new AlertDialog.Builder(DomaCareDetailViewActivity.this) …
S Fitz
  • 1,074
  • 15
  • 31
0
votes
1 answer

How should i refresh my AutoCompleteTextView component?

I'm using this block of code: spinner.setOnItemSelectedListener(new OnItemSelectedListener() { @Override public void onItemSelected(AdapterView arg0, View arg1, int arg2, long arg3) { Cidade cidade =…
Igor
  • 1,397
  • 3
  • 24
  • 56
0
votes
1 answer

Holoeverywhere Fragment not displaying

I am creating an app and have stumbled across a problem. My apps fragment should display text when selected but it is not. Here is my code: This class my fragment which should be displaying text when selected. TestFragment.class: public class…
0
votes
1 answer

reduce size of apk using HoloEveryWhere

I am using HoloEveryWhere in my project. But i am not happy with the size of the final apk. Can anyone provide specific guidelines on how to reduce size or include only specific styles that would be effective application wide. P.S. Spinners are not…
Sakibul Alam
  • 1,731
  • 2
  • 21
  • 40
0
votes
0 answers

Fatal error on LoadedApk,makeApplication

I'm developing an application here and it's been working good so far, but now I've put the HoloEverywhere lib to update the layout to the ICS look, and I started getting a random error on startup. I searched for this error and found out that it…
0
votes
1 answer

Holo Everywhere and facebookSDK dont work

I'm trying to use facebook SDK with holoeverywhere but not working because the library android v4, it seems that libraries are not the same as sherlock facebook and then how to solve it? someone already implemented this? sorry but my ENGLISH is…
0
votes
1 answer

Google Play install error - Missing shared library

I have an app with 100k~ downloads on Play, which I started to develop like a year ago. Back then, it had the default crappy android UI. A month ago, I decided to include the ActionbarSherlock+HoloEverywhere libraries, so it could provide a much…
0
votes
3 answers

ListView in alertdialog not displaying correctly when using holoeverywhere

I am using the Holoeverywhere compatibility library along with the sherlockActionbar library. The problem i am having is that when i inflate the view in the DialogFragment class, it doesnt display corrrectly on pre 3.0 devices public static class…
0
votes
3 answers

How do I properly create this custom ArrayAdapter?

I have this code but it doesn't want to work. also, Main.java line 76 includes this in my onCreate: setListAdapter(new ImageAndTextAdapter(ctx, R.layout.lchs_item, items, icons)); imageandtextadapter.java: public class ImageAndTextAdapter…