Questions tagged [droid-fu]

Droid-Fu is an open-source effort aiming to collect and bundle solutions to common concerns in the development of applications for the Google Android platform.

Droid-Fu is an open-source effort aiming to collect and bundle solutions to common concerns in the development of applications for the Google Android platform. Currently it mostly contains code which I pulled out of Qype's Android app, and which I believe may prove useful to other developers. This is very much a work-in-progress, and both content and APIs are still in flux. There is not much documentation (yet), and I intend to change that. For now, you may want to read all related articles on my weblog. You can also find me on Twitter.

There are no releases yet, we pretty much work directly with the sources. If you want to stay up-to-date, we suggest you check out the project sources, pull frequently, and compile your app against them.

What does it offer?

Droid-Fu offers both support classes meant to be used alongside existing Android code, as well as self-contained, ready-to-be-used components like new adapters and widgets.

The areas tackled by Droid-Fu include:

  • application life-cycle helpers
  • support classes for handling Intents and diagnostics
  • better support for background tasks
  • super-easy and robust HTTP messaging
  • powerful caching of Objects, HTTP responses, and remote images
  • custom adapters and views

I suggest you read this introductory article, and anything that follows.

17 questions
3
votes
5 answers

Droid-Fu build error

I am trying to build Droid-Fu as specified on the GitHub page but the build is failing. Here is the message which I got after running mvn package inside the Droid-Fu folder [INFO] artifact junit:junit: checking for updates from central Downloading:…
Abhinav
  • 38,516
  • 9
  • 41
  • 49
2
votes
0 answers

HorizontalListView with RemoteImageView

Hi I am trying to use HorizontalListView by dev-smart (from here) with each entry showing image fetched from the web using RemoteImageView by käppler ignition library (from here). There is an issue that makes the image not loaded at all in the…
2
votes
1 answer

Droid-fu library's WebGalleryAdapter with gallery example

Any good tutorial shows how to use Droid-fu library's WebGalleryAdapter with gallery widget ??? here you can found info about droid-fu libaray public class ImageSwitcherGallery extends Activity{ /** Called when the activity is first created.…
d-man
  • 57,473
  • 85
  • 212
  • 296
2
votes
1 answer

Ignition RemoteImageView gives "Failed creating disk cache directory" warning

I am using Ignition (formerly known as DroidFu) to download images in the background and update related ImageViews when they are ready. I also wanted the images to be cached, so they would not have to be re-downloaded every time the user revisited…
Chad Schultz
  • 7,770
  • 6
  • 57
  • 96
1
vote
2 answers

Compensating for the shortcomings of AsyncTask with BetterAsyncTask (Droid-Fu)

After a lengthy and unsuccessful search on google, it turns out that there is hardly any information about a handy library called Droid-Fu https://github.com/kaeppler/droid-fu After reading the introduction by the creator…
Sgali
  • 362
  • 2
  • 12
1
vote
1 answer

Using both DroidFu and GreenDroid in an Android project

DroidFu and GreenDroid are great open source projects which I would like to utilize in my Android project. However, I ran into a problem when trying to get them work at the same time. Both of these libraries require that the application derives from…
Kimi
  • 6,239
  • 5
  • 32
  • 49
1
vote
1 answer

How to use Droid Fu WebGalleryAdapter?

I am using Droid fu's library which is GREAT! Im having problems implementing the webgalleryview though. I dont know how to go about implementing it. I want it to display some images from a url. And cache the images. How would i do this with droid…
yoshi24
  • 3,147
  • 8
  • 45
  • 62
1
vote
4 answers

Link to droid fu jar or help installing it?

Does anyone know where you can get the droid fu jar from? I have no idea how to install it from github
YogoTi
  • 91
  • 1
  • 6
1
vote
1 answer

Droidfu WebImageView and GridView

Can someone please tell me why this GridView does not scroll smoothly even when the images are grabbed from the Droidfu cache? I've tried WebImageView, my own defaulthandler with ImageLoader, removed the sqlLite calls and just used static URLs,…
jj.
  • 343
  • 1
  • 7
  • 20
0
votes
1 answer

AndroidWebImageView droid-fu in a ListView

I have a Listview where I have imageviews which load a custom url. I've the problem that one loaded ressource loads again, and so it hangs when scrolling up and down because every time the ressources will be reloaded. First with only one View Type…
brokedid
  • 879
  • 2
  • 10
  • 35
0
votes
1 answer

Droid Fu Force Close - Java can't cast context to DroidFuApplication object

I'm new here, and I just learned how to code an Android application. Right now, I want to make an Application with Droid Fu library (which is a good library but has a lack of documentation and examples). I'm facing a problem with my…
siryu88
  • 3
  • 1
0
votes
1 answer

DroidFu - Scale/Stretch a WebImageView

I have collection of 65x65 pixel source image I'm retrieving via DroidFu. I want to present them at 80x80dip to better fit my listView row contents. Given that I do not want to resize at the source (server) what would be a good approach to scale a…
Nick
  • 8,483
  • 10
  • 46
  • 65
0
votes
1 answer

Droidfu WebImageView and GridView problem

Im using Droidfu's widget WebImageView inside GridView to create gallery. Image is beeing async downloaded with WebImageView and cached. The problem is that id doesn't always show the image (it shows default error img instead) when grid scrolls to…
baneizalfe
  • 51
  • 2
  • 3
0
votes
2 answers

Force close when trying to use BetterAsyncTask in droid-fu Android

I am currently trying to use the android library android fu to help me with my first proper app. I am trying to makea test project using the droid fu library but when ever i go to test the app it force closes. I have used an example of the asynctask…
adamias
  • 77
  • 11
0
votes
1 answer

Android Ignition POM Error

I am new to all things maven and ignition. I am attempting to set up ignition-core as a library project to link to a new project. However the ignition-core pom has this error... Project build error: Non-resolvable parent POM: Could not find artifact…
PBonc
  • 35
  • 7
1
2