CursorAdapter is an Android Adapter class which exposes data from a Cursor to an AdapterView.

learn more… | top users | synonyms (1)

0
votes
1answer
21 views

Editing cursor data before display

I'm new in android and Java world and I want to edit cursor data result before displaying it. To do so I wrote the following code private static final String[] INTERNAL_COLUMNS_1 = new String[] { ...
0
votes
1answer
20 views

Unsupported operation exception when trying to getBlob from cursor

Here is my SimpleCursorAdapter extension class which I use trying to display information about contacts in a ListView: private class CustomContactsAdapter extends SimpleCursorAdapter { ...
0
votes
0answers
16 views

Spinner with an CursorAdapter

Hi i would like to ask is it possible to make an Spinner directli from a CursorAdapter Class without an ArrayAdapter or an SimpleCursorAdapter. I am asking because i am trying to set up an Spinner ...
0
votes
0answers
17 views

Android component for displaying tabular data

Is there a feature or an android approach to display data such as ShinobiGrids for IOS? The requirements are: 1. Download the database table in the component where the column of the table ...
0
votes
1answer
13 views

1st Activity's listview not updated after 2nd activity inserts into database via ContentProvider; onLoadFinished not called

Problem: upon returning from a 2nd activity the first activity's listview does not reflect database changes made by the 2nd activity. If I make a trivial change to code (to make emulator happy) and ...
0
votes
0answers
56 views

listview notifyDataSetChanged() moves without changing inflated view

I am using a ListView with CursorAdapter to display some information. Depending on the information type the row is different but in reality some items are right and some left. Here is my Activity ...
1
vote
1answer
25 views

Android Save and Restore List State with CursorAdapter

I have a list view in a fragment that is populated by a CursorAdapter. When the device rotates I want to save the state of the list, then restore it without having to make another call to the SQLite ...
1
vote
1answer
29 views

Couldn't read row 384, col 47 from CursorWindow. Make sure the Cursor is initialized correctly

I'm reading some data from Android calendar and sometimes I got strange crash reports from users like: java.lang.IllegalStateException: Couldn't read row 384, col 47 from CursorWindow. Make sure the ...
0
votes
0answers
34 views

Android: Custom CursorAdapter to alternate resources

This problem has been stuck for a while in my head. What I need to do: Show a listview with alternating resources for the items in the listView. What is my problem: So far I can alternate resources ...
0
votes
0answers
42 views

android swipe on ListView doesn't get the correct row

I am using the following(Android Swipe on List) code to detect swipe on listview, and I am using a CustomCursorAdapter to populate the listview from a cursor. however, when I print the value of the ...
0
votes
0answers
22 views

Efficient use of ListView on changeCursor and avoid data rebinding?

Below is my code for my bindView() for my CursorAdapter. The whole middle section there is me setting an identifier on one of the images, that will prevent my ImageLoader (a lazy image loader) from ...
0
votes
3answers
58 views

how can I make two listviews fetching from two sqlite tables in one activity in Android

I have one activity in which I need to display two lists that fetch from two sqlite tables. for every list, I am writing a customCursorAdapter Can anyone guide me to a useful example, or just how to ...
0
votes
0answers
34 views

Add an extra image to the cursor adapter in android

I want to add an extra image to the cursor image through cursor adapter. These images are shown in the gridview and my extra image will be shown as first element of gridview. I have tried the ...
0
votes
1answer
43 views

Row background changes due recyclation. getView() implementation doesn't fix this

I've been looking a lot for guides, tutorials and answers here on stack, but I still can't figure this one out. I have a custom drawable state. If I click on a row in a ListView, it gets highlighted ...
0
votes
1answer
41 views

CursorAdapter bindView() does not correctly map to the view returned from newView()

I have a CursorAdapter with newView() and bindView() overridden. The problem is that bindView() does not correctly map to the view created by newView(). newView() returns two different views ...
0
votes
1answer
63 views

Listview with custom checkable rows backed by custom cursor adapter looses selection when recycling views

I know this question has been asked before but I have a spin on it that I just can't seem to find an elegant solution for. How can I keep track of selected checkboxes in a listview which uses a ...
0
votes
1answer
51 views

Joining multiple records in a CursorAdapter

I'm trying to build a ListView that represents a list a recipes. I get the concept of using a SimpleCursorAdapter to accomplish that. However, in addition to showing the recipe image & title for ...
0
votes
1answer
37 views

NullPointerException when fetching database information in android

i want to fetch database records wit htis method and stor in an object: SQLiteDatabase db = openOrCreateDatabase("lingodb",MODE_PRIVATE, null); Cursor cur; cur = ...
0
votes
2answers
67 views

Prevent AsyncTask from running multiple times in bindView

I have a custom CursorAdapter that is using multiple AsyncTasks in its bindView method to load images into a grid. When bindView runs my AsyncTasks get launched multiple times. This has the effect of ...
0
votes
1answer
69 views

CursorAdapter: getCount() == 0, mCursor.getCount() == 6

I have an adapter that wraps a CursorAdapter, the reason being that I need to display items in rows (as in a GridView) but also display detail about each item if clicked in a panel below (requiring a ...
0
votes
1answer
78 views

swapCursor(Cursor) is undefined for the type SimpleCursorAdapter

I am receiving a "swapCursor(Cursor) is undefined" error when creating a CursorLoader. I have imported the android.support.v4 (app.LoaderManager, app.LoaderManager.Loader, Content.CursorLoader, ...
0
votes
2answers
47 views

Custom SimpleCursorAdapter - overloaded bindView issue with onClickListener

I have created a custom SimpleCursorAdapter in which i have overridden bindView so I can connect an onClick listener of an ImageButton in the list item layout. I want to start a new application on ...
0
votes
0answers
122 views

IntentService, BroadcastReceiver, AsyncTask and notifyDataSetChanged

Need some help or advice's. Problem overview with some code snippets. I have main activity. Then application starts my onCreate method make some setups and onResume method fires all my data ...
0
votes
1answer
50 views

Using custom CursorAdapter with LoaderManger initialize with null cursor

I have created a custom CursorAdapter to use with my listview and implemented the LoaderManager.LoaderCallbacks functions to load data. My problem: in my onCreate() method for my activity, I want to ...
0
votes
1answer
57 views

A way to merge adapter with data fetch from different resources

I have a CursorAdapter for some data fetched from a database and another set of data fetched from a WebService , Is there a way to use one adapter (so i can set it for a single ListView) for both of ...
1
vote
1answer
58 views

AsyncTask and custom CursorAdaper

I'm in some trouble with custom cursorAdapter and AsyncTask. I wanted to setup listView and adapter first and after that in asyctask to query data from database. But for a first time cursor in adapter ...
0
votes
0answers
50 views

CursorAdapter doesnt reload with ContentObserver inside getView

I am trying to calculate some count using sql inside each ListView item, it works but it doesnt refresh its data, when something has changes, I registered a content observer, onChange method get ...
-1
votes
1answer
50 views

SimpleCursorAdapter error [closed]

When I use a constructor of SimpleCursorAdapter it tells me that constructor is undefined. What should I do? public class ReminderListFragment extends ListFragment implements ...
2
votes
1answer
75 views

How to create Cursor data without getting data from the DataBase in Android application?

In my Android application, I am using Sqlite DataBase to store the data from the server. I am using ContentProvider and ContentResolver to access the data from the DataBase and using CursorAdapter to ...
0
votes
1answer
21 views

How to find the scope of data to be shown in ListView

I have a List which contains huge amount of data. So filtering on text change is little bit slow. So i thought that why should i filter all the data at a time. I want to filter limited data which will ...
0
votes
0answers
120 views

Viewpager and cursor adapter to get data from database

I want to use viewpager with my content that stored in database. There is no problem on getting content with cursor, and going between them with prev/next buttons. But as I said, I also want to ...
0
votes
0answers
60 views

Getting data from sqlhelper class's cursor to another activity

How can I get column index (category._id or categorylang.Title) from another class. Code: public Set<Category> getTopCategories() { final List<Integer> loadedTopCats = new ...
0
votes
0answers
44 views

android adapters caching data

I implemented my own android Cursor and returning it by ContentProvider to UI. I observer one interesting thing. Directly after querying cursor, I see in the logs that someone is calling moveToFirst() ...
1
vote
1answer
24 views

how to unbind cursor adpter with listview in android

I need to know ,how to unbind cursor adapter with listview. Continuous updates comes to my table.As cursor Adapter already register its observers .It is directly reflected to listview which hangs my ...
0
votes
1answer
47 views

Switch gets toggled by itself when gone off screen in ListView - CursorAdapter

I am having trouble figuring this one out. I have a ListView with CursorAdapter and if item goes offscreen the switch resets it self. I have a listener onCheckedChangeListener set on the switch, ...
0
votes
0answers
38 views

ListView with CursorAdapter

I m extending cursorAdapter and I override these two methodes areAllItemsEnabled() { return false; } isEnabled(int position) { return false; } however my list items continue to be ...
0
votes
1answer
283 views

Custom cursor adapter calling bindView multiple times

I have been suffering this issue for months and months (but now I am performance tuning). However, I now desperately need to know why my adapter feels it is necessary to run bindView up to 4 times on ...
2
votes
0answers
82 views

Animation on emulator slow and choppy due to garbage collection

I am currently testing my app on an emulator and have noticed a lot of garbage collection takes place while I'm performing animations. I am concerned that all this garbage collection may not be ...
0
votes
1answer
221 views

Android SQLiteException: no such table error

I've created a CursorLoader to work with my Contentprovider(click to view provider) but I am receiving a swapCursor error "The method swapCursor(Cursor) is undefined for the type CursorAdapter" ...
0
votes
1answer
47 views

performing update queries for a drag drop listview

I am using a drag and drop listview backed by cursor adapter. To maintain the database I am updating the positions of database entries at the time of dragging a view.For this I am using the ...
1
vote
4answers
111 views

How to manage deleting an item on a CursorAdapter

I'm currently facing a stupid issue. I've a listview with a custom adapter (extending CursorAdapter). It displays a custom view with different buttons (share, like, delete). For the delete button, it ...
0
votes
1answer
65 views

Image appearing in first entry of ListView when it should not appear

This is the right-hand side of a ListView in an application I am working on. As you can see, an ImageView displaying a star shows up twice in a list of 9 entries. This is the BindView method that ...
1
vote
2answers
51 views

Updating the cursor manually by adding an item at a given index

I want to insert an item (and even null) into a cursor at a particular index. For example, I need to display 5 rows of information, but my query will get me a cursor with only 3 records, thus I need ...
0
votes
2answers
502 views

Android - Populating a listview using fragments and a Simple cursor adapter

I know that this question is probably asked a hundred times so far, but i still haven't manage to solve my problem. I have one activity that's comprised of 2 fragments. One fragment is a form that ...
0
votes
0answers
158 views

SearchView with a suggestion CursorAdapter attached, being extremely slow?

I set up my searchview like follows: searchView = (SearchView) menu.findItem(R.id.menu_search).getActionView(); searchView.setOnQueryTextListener(this); searchAdapter = new SimpleCursorAdapter(this, ...
0
votes
0answers
76 views

how to use custom CursorAdapter in SherlockListActivity?

My app uses ActionBarSherlock and I also need to use a Custom Cursor Adapter ? How can I do so as java doesn't allow multiple inheritance. That is : public class MyActivity extends ...
1
vote
3answers
280 views

How to get FragmentActivity reference inside an anonymous inner class of bindView method?

I am trying to get a FragmentActivity reference inside an anonymous inner class of bindView method in a CursorAdapter. Actually I am trying to create a DialogFragment when an ImageView is clicked in ...
0
votes
1answer
72 views

Retrieve the name of playing ringtone in PhoneStateListener

Essentially the title says it all. I want to be able to retrieve the currently playing ringtone in the phonestatelistener class. One solution might be to simply retrieve DEFAULT URI from the ...
2
votes
1answer
419 views

IllegalStateException “attempt to re-open an already-closed object” in SimpleCursorAdapter from ContentProvider

I have a series of ListView objects in Fragments that are being populated by a CursorAdapter which gets a Cursor from the LoaderManager for the activity. As I understand it, all database and Cursor ...
1
vote
0answers
231 views

ListView — subitem onClick() prevents onItemClick()

I'm extending a CursorAdapter to bind data to views in a ListView. When the sub view within the item has an onClick() listener, onItemClick() is not called for the row. I want sub view's onClick() ...

1 2 3 4 5 6