A basic adapter to map columns from a cursor(of Database) to TextViews or ImageViews defined in an XML layout file.

learn more… | top users | synonyms

0
votes
0answers
7 views

Custom CursorListAdapter is adding layout elements at runtime as the list scrolls

I am working on an aggregate listview in Android. I have 3 tables, each with its own content provider. The home screen for the app is to have a single list with all three of them displayed in reverse ...
0
votes
1answer
18 views

Column does not exist

I hava DB public static final String DB_TABLE_EXERCISES = "exercises"; public static final String EXERCISE_COLUMN_ID = "_id"; public static final String EXERCISE_NAME = "exercise_name"; public static ...
0
votes
0answers
23 views

Android - Gridview with Simplecursoradapter

I am working on gridview. I need to make gridview connected to sqlite with simplecursoradapter. But, this code makes error threadid=1; thread exiting with uncatught exception Let me show you my ...
0
votes
2answers
35 views

Android: How to change an ImageView in a ListView item onClick corresponding to an SQLiteDatabase entry?

What I have: I have an Activity with a ListView. The layout for the ListView item is custom and contains an ImageView and several TextViews. I populate the ListView with data from an SQLiteDatabase ...
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 { ...
2
votes
1answer
27 views

SimpleCursorAdapter returns an integer key for a string - how to convert to corresponding string?

My program uses a database which has table with an integer column, meant to contain numbers 1 - 4 corresponding to 4 different strings. I have a SimpleCursorAdapter which updates a listview of my ...
0
votes
1answer
23 views

Adding a Vertical Line to the SimpleCursorAdapter ListView

I have a ListView, and the list contain a Layout with View Component added to my RelativeLayout : <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
0
votes
0answers
19 views

Custom CursorAdapter with AlphabetIndexer and alphabet sections

this is my first post, I hope to write it as complete as possible. I'm developing an application that displays a list of films in a listFragment. The list is populated by means of a ContentProvider ...
1
vote
2answers
38 views

CursorLoader/adapter not displaying correct values

I'm attempting to query Nickname and SIP Address from the contacts. The issue I'm running into is that both of them are stored in DATA1 column. So when I run a query, I only retrieve the Nicknames. ...
1
vote
0answers
35 views

Issue on Changing the image in ListView

I am writing an android application to list the item from database, and mark some of those item as favorite and keep update the database according to favorite. My Aim is: When I mark particular ...
0
votes
0answers
35 views

Custom SimpleCursorAdapter shows first row when adding a new DB entry

I'm using a custom SimpleCursorAdapter to populate a listView. When I add a new entry in the table, the list view adds the first DB entry to the end of the ListView. Why does it insert the first row ...
0
votes
0answers
31 views

How to refresh my Views

i have a question about refreshing my listview with new data in my cursor. The Cursor.requery() method works quite good but it is deprecated so i'm trying another approach but that does not work very ...
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 ...
-2
votes
0answers
30 views

“The constructor is deprecated” warning for Custom SimpleCursorAdapter [closed]

I can't find help on what to use instead of 'super' in oder to remove the depreciated warning. I am moving some code from Eclair to JellyBean, using CursorLoader and Fragments etc. After a few days ...
0
votes
3answers
43 views

Changing TextSize of a TextView inside a ListView at runtime

I have a ListView that uses a custom SimpleCursorAdapter to display information. Each ListView row has Three TextView items. Due to the nature of the application, the reader may or may not want to ...
0
votes
0answers
24 views

Cursor: Invalid Statement in fillWindow() when calling forceLoad() on CursorLoader using SqliteCursorLoader

I'm doing a ListView in a fragment using loaders, ActionBarSherlock and SqliteCursorLoader. The ListView basically shows a list of dates and GPS coordinates. The problem comes in when I reload the ...
1
vote
0answers
44 views

Which is the best solution between ArrayAdapter and SimpleCursorAdapter? [closed]

In terms of performance is preferable to use SimpleCursorAdapter or ArrayAdapter in which I have passed an array containing values ​​resulting from a cursor?
0
votes
1answer
42 views

bindView being called endlessly in custom CursorAdapter

I have a ListView which is served by a custom CursorAdapter. The ListView rows are very simple - a CheckBox on the left, and two TextViews. When a checkbox is "clicked", action mode is started so ...
0
votes
4answers
93 views

Caused by: java.lang.IllegalArgumentException: column '_id' does not exist

i want to show my table using cursor and list view. but i got error. Caused by: java.lang.IllegalArgumentException: column '_id' does not exist but i didn't declare _id in my application. can ...
0
votes
0answers
38 views

ContentResolver$CursorWrapperInner cannot be cast

My app uses a cursorloader to populate sqlite data into a ListView. Actually, the cursorloader should only populate one column (COLUNM_NAME_SITE) from the DB into the listview. The issue I have ...
0
votes
1answer
84 views

Custom ViewGroup, GridView, and SimpleCursorAdapter

I need to display data in 3 textviews, inside each grid item, but also I want each grid item to be square. Also the cursoradapter is all based on a search. Based on my necessities I found by research ...
0
votes
1answer
42 views

Android Button Tag and Onclick listener in listview get reset when scrolling

I am populating a listview with an imageButton that when clicked, starts playing an audio file. I set the datasource of the MediaPlayer from the ImageButton.setTag("resource url") while ...
0
votes
1answer
40 views

CursorLoader not populating ListView [HELP]

My app uses a cursorloader to populate sqlite data into a ListView. Actually, the cursorloader should only populate one column (COLUNM_NAME_SITE) from the DB into the listview. The issue I have is ...
0
votes
0answers
14 views

Slide to make button visible in array

I'm trying to make an activity which include an array (using SimpleCursorAdapter), and the problem is when I'm trying to make a function that slide an item in the array, a "delete" button appears and ...
0
votes
1answer
55 views

override or implement a supertype method [ERROR]

I am trying to create a OnItemClick method to launch another activity from my ListView. I am receiving multiple error once the method is created. the error messages are: The method ...
0
votes
2answers
122 views

How can I change the background color of list items based on the data being displayed in each item?

I have a list of orders in SQLite which vary in status: assigned, loaded, delivered. I'd like for each of those orders, when displayed in the list, to have a different colored background. So far, I ...
0
votes
1answer
117 views

Android SQLite Column Not Found Error When Executing Raw Query

I am making an android app that searches for restaurants in a SQLite database. I currently use a custom loader (that I found online) to load a cursor from the database and then take that cursor and ...
0
votes
1answer
59 views

ExpandableListView extended using BaseExpandableListAdapter but reading from Sqlite DB example

Senior Geeks. I'd like to request a simple but fully working example of how to implement an ExpandableListView while extending from BaseExpandableListAdapter Yet Reading data from an Sqlite Database. ...
0
votes
0answers
39 views

SimpleCursorAdapter() Depracated, how can I replace it?

I am trying to display data from SQLite to a listview. I try to use the constructor SimpCursorAdapter() but it says it's deprecated and i can't use it. Anyone any idea on how to do this without in any ...
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
89 views

Limit number of items in ListView from Adapter

I currently am using a SimpleCursorAdapter with a ListView that pulls items using a CursorLoader from a ContentProvider and SQlite DB. The database contains around 300 items and I want to limit the ...
0
votes
0answers
39 views

android: YouTubePlayerView setViewBinder in SimpleCursorAdapter

I'm trying to get youtube_video_id from sqlite and set youTubePlayerFragment with SimpleCursor Adapter. just don't understand how to manage this. Youtube windows is loading but ALWAYS BLACK :( // I'm ...
0
votes
3answers
92 views

Android SimpleCursorAdapter ListView Error

I've been messing with SimpleCursorAdapter and Listview and getting varied results. At first I was getting some results on my listview however the layout wasn't good so I decided to mend this. However ...
0
votes
1answer
83 views

CursorAdapter crashing app while trying to display listview (with content from database) - logcat inside

In my application, when clicked, a button "Favorites" is supposed to open a new window with a listview whose content is from a database. I got a NullPointerException when I click this button. Here ...
0
votes
1answer
95 views

My Android ListFragment isn't displaying the list

The following ListFragment doesn't display anything other than a blank screen. I know the data are present. I'm not getting errors, just a blank (white) screen. I'm sure it's something silly. I'm ...
0
votes
1answer
54 views

CursorAdapter autoupdates images

I have a customized SimpleCursorAdapter that gets information from a database. If one value is 1 I color the background of an ImageView, if it's 0 I don't color it. When the ListView is loaded ...
0
votes
2answers
105 views

Android: ListView Load gives Null Pointer Exception

I'm trying to get data from sqlite to listview so i followed the example in the answer in this url Make listview from SQLite database the CustomCursorAdapter is going like that public class ...
1
vote
1answer
99 views

Peculiar behavior with imageview and checkbox in gridview

I get data(imagepaths) from sqlite, so I used simplecursoradapter to show images in a gridview. In each gridview item, it contains an imageview and a checkbox as shown in the below code. Here my first ...
0
votes
1answer
46 views

NullpointerException on SimpleCursorAdapter

My main page is an ViewPager with 6 pages (first one settings, other 5 are listview and use this cursoradapter for data) In settings there is one button which opens another activity, users change ...
0
votes
2answers
147 views

Implementing lazy loading for simplecursoradapter

Here I am getting stored picture paths from the database. So that I am showing the images in the gridview with the help of paths. But as it is shown in my code below, I am loading cursoradapter in the ...
0
votes
0answers
36 views

why view.getId(); in viewbinder returns false?

I am learning android programing..I have a problem in working by view binder..lets first tack a look at my code here is my simplecourser adapter SimpleCursorAdapter adapter = new ...
1
vote
1answer
106 views

Content provider for multiple tables

I am new in Android and am implementing a content provider for 5 tables. My Questions Are: Should I have a Content Provider for each table or multiple tables in a single Content provider? Since the ...
0
votes
2answers
32 views

Extending SimpleCursor Adapter

I'm new to android development and i was looking for simplest explanation for using the SimpleCursorAdapter class with a cursorloader for pulling out Video Thumbnails and details from my android ...
0
votes
1answer
99 views

Load Image in a custom list by SimpleCursorAdapter

I have a custom list that I am loading data in it by a SimpleCursorAdapter ..My list has an imageview that I want to change its image per each row of list..I used viewbilnder..but didnot get ...
0
votes
2answers
78 views

Can I add custom list layout by SimpleCursorAdapter?

I am new with android..I am learning work with database files..I have a simplecurseadapter like this Cursor c = db.query(TABLE_NAME,columns,null, null, null, null, COLUMN_ID); ...
7
votes
1answer
289 views

swapCursor undefined error

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
3answers
130 views

SimpleCursorAdapter does not load external sqlite database: “_id” error

The error says: column _id does not exists but the column is in the database (set as primary key) and this one is located in the external SD folder. I'm trying to return the values contained in the ...
0
votes
0answers
43 views

03-29 15:21:21.400: E/AndroidRuntime(6203): android.database.StaleDataException: Access closed cursor

In a Fragment when I remove it to open another I get the following error 03-29 15:21:21.400: E/AndroidRuntime(6203): android.database.StaleDataException: Access closed cursor This error ...
1
vote
1answer
91 views

How to use SimpleCursorAdapter with single_choice and multiple_choice

I am developing a quiz application which contain both multiple answer type and single answer type.the question and answer are store in sqlite database.i use simple cursor adapter and get idea about ...
1
vote
1answer
271 views

Delete item from listview in android [duplicate]

I'm using SimpleCursorAdapter to fetch data from database and display it in ListView. please anyone tell me how to select/delete one or more list items from that list. Or at least tell me how to fetch ...

1 2 3 4 5 10