Questions tagged [android-query]

Android-Query (AQuery) is a light-weight library for doing asynchronous tasks and manipulating UI elements in Android.

The goal of Android-Query (AQuery) is to make Android coding simpler, easier, and more fun!

96 questions
0
votes
1 answer

ProgressDialog is not showing

I am using the AndroidQuery's way of handling images in saving then to sd card. But the dialog is not showing for some reason. The images are properly saved in sd card, only the dialog is the problem.
rahstame
  • 2,010
  • 4
  • 22
  • 52
0
votes
1 answer

AQuery. How do I get username, id, name, surname and email address from a google account?

I am using the code below from the AQuery demo app and the xml is always null How can I reteive the info related to the account I choose from the list of google accounts? public void auth_specific_account(){ String url =…
code511788465541441
  • 20,207
  • 61
  • 174
  • 298
0
votes
2 answers

Values inside listview row gets duplicated upon scrolling

I am stuck for a few days now and cant get anyway near the answer - I have a listview with imageview and next to it a flowlayout (it does the same with linearlayout though) I extended the base adapter such that it adds the images from a db query…
0
votes
2 answers

Parsing xml only getting CDATA within Tag

I am trying to get text from an xml file that looks like so:

Last updated: Mon, 19 Aug 2013 23:52:31

Incident is 53% contained.

The American Fire burning in heavy fuels on extreme slopes…
jasonflaherty
  • 1,815
  • 6
  • 34
  • 76
0
votes
0 answers

Android: Load a lot of information asynchronous

I have an homepage in my app android This homepage needs information from an external database I thought in first place to use ASyncTask to load m information, but I think it's not best solution because I have 2 ListView First ListView (that has…
Tizianoreica
  • 1,796
  • 3
  • 19
  • 37
0
votes
2 answers

Querying Sqlite database in android

Thish code work fine for me it show the information of every employee one by one. BUT i want to see only the information of the one employee of given id. how can i do that . c=myDbHelper.query("EMP_TABLE", null, null, null, null,null, null); …
0
votes
1 answer

How to transform basic code into more efficient AQuery code

My questions are about delay image loading using AQuery So my app is this : i read a json, that contains various information, and links to images(this is done in the procedure doInBackground from AsyncTask). Also, after reading the links in this…
Teshte
  • 556
  • 1
  • 6
  • 25
0
votes
2 answers

Aquery - cache downsampled version of the image

I have a Custom AdapterView (sort of) in which I lazy load images. To do it, I use the awesome aquery library. Short story: I would like to cache (memcache and filecache) the downsampled version of the file. It makes it quicker to add to my adapter…
Michał Klimczak
  • 11,170
  • 7
  • 55
  • 92
0
votes
3 answers

Simple way to check if file on server has changed without downloading

I have an XML file that I am parsing in my Android app. I would like to NOT parse it if the file has not been changed. I can get the time when my file was last modifed and I can get the last-modified date from the server header in GMT, but am not…
jasonflaherty
  • 1,815
  • 6
  • 34
  • 76
0
votes
1 answer

How to edit bitmap before is it stored in a cache with AQuery?

There is a custom callback example on AQuery wiki: String imageUrl = "http://www.vikispot.com/z/images/vikispot/android-w.png"; final int tint = 0x77AA0000; aq.id(R.id.image1).image(imageUrl, true, true, 0, 0, new BitmapAjaxCallback(){ …
Martin Milesich
  • 184
  • 2
  • 8
0
votes
1 answer

Android Query - Async Image load with redirect

Having trouble downloading an image when using the Android Query (aQuery) library to download image that has redirect: Using url https://api.twitter.com/1/users/profile_image?screen_name=scottyab&size=bigger in web browser redirects to…
scottyab
  • 21,990
  • 15
  • 91
  • 102
0
votes
1 answer

how to extract data in sqlite DB in a particular range

I am writing an android application in which i have to get a range of values like the below, I have a DB in which the contents are like the below 5 columns, _ID | _NAME | _AGE | _HEIGHT | _WEIGHT | 1 | aabv | 10 | 5.0 | 30 1 | babs |…
Vamsi
  • 5,123
  • 6
  • 27
  • 32
0
votes
1 answer

Load json data in Android-uitableview

Help please! In my application I use Android-UiTableView ( thiagolocatelli / android-uitableview ) and AQuery ( androidquery / androidquery ) My task is to make the loading of data from json array and load image from URL. Load a list without…
cjp2600
  • 31
  • 6
0
votes
1 answer

Get listview query separate page with onitemclick

I want to display listview query separate page when user click particular list. I wrote program for display listview and i implement onitemclick. But when i was clicking listview it won't display query. Eg: If i click one, i want to diplay one:…
0
votes
1 answer

Querying MediaStore - SQLiteException

I'm performing a query on the mediastore in an effort to return the number of albums for a particular atist. The query looks like this: public String doQuery(String artistName) { String[] proj = new String[] {…
Tim Malseed
  • 5,372
  • 6
  • 39
  • 61