The ViewBinder is an Android class that can be used with an adapter to modify(or enhance) the way that adapter binds its data to its views.
0
votes
0answers
14 views
ViewBinder setViewValue only working sometimes
I'm using a SimpleCursorAdapter and I'm not sure why this is working only sometimes. If I redo the same query I get different bindings. It has nothing to do with what the cursor has though I know.
...
0
votes
1answer
15 views
ViewBinder and disappearing Images
We've gotten it to show the images and hide them when needed but they are Disappearing when i scroll down or up. Anyone every seen this or know its cause? Not sure whats going on but when i scroll its ...
0
votes
1answer
39 views
Set ImageView on a ListView with ViewBinder depending on RatingBar value
I have in my MainActivity a ListView which shows a list of movies that i'm populating with a SimpleCursorAdapter.
In another activity the user is able to set the rating with a RatingBar and the float ...
0
votes
1answer
89 views
Android viewBinder displaying images on simpleCursorAdapter
I have created a working ViewBinder to use with my simpleCursorAdapter, and all is functioning properly. The desired images display as they should,etc. But when I was testing my code, I put a log my ...
0
votes
1answer
120 views
Adding tags to ListView's TextView?
I'm writing my church's Android app, and I'm trying to use a ListView as a launchpad to view sermons online. The LV populates correctly, but there are two TextViews in each list item that aren't ...
1
vote
1answer
181 views
Android Dev: Inserting a local image file into a ListView referenced from a SQLite database via a ViewBinder
So I have an application that users can take a picture and store it locally. The image name is stored in my SQLite database for future reference to call the photo. Right now I've traced the problem to ...
0
votes
0answers
154 views
How to retrieve image uri from database using SimpleCursorAdapter and display the image to ImageView
I'm new to android. I have problem with how to retrieve the image uri that I have save on database and display the image on the ImageView in ListView. The texts(name, category, description) retrieved ...
0
votes
1answer
171 views
Changing Color of ListView Row Item
This is the Alliances Activity on my app:
This is the layout for a single row:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout ...
0
votes
1answer
81 views
SimpleCursorAdapter.ViewBinder text not showing
I have been stacked at a problem and i can not find the solution.
I have a database and i load a listview using SimpleCursorAdapter.
I want to change the color of a text depending on the value of a ...
0
votes
3answers
70 views
Removing an Imageview from View
I want to remove an imageview from a View (android.view.View)based on a codition.condition is the src of that image view.How can i remove an imageView from a view. please help
0
votes
0answers
67 views
Use Viewbinder with ability to change name color and dynamically add image
i have a project that shows a list of categories from a DB with simple cursor adapter.
in the database i am saving the "type" , "color", that was chosen by the user, and "count".
i use the ...
0
votes
0answers
190 views
ListView setBackgroundResource not working android
I have problem wit changing backgroud color in my project. I'm just trying to change list background color with condition in ViewBinder. But color of backgroung didn't changing.
My ViewBinder
public ...
0
votes
1answer
73 views
Invisible text color instead of white in a listview displaying entries from database
Im trying to change text color in a listview, which is displaying my entries from database. The problem is that it displays invisible text ( or it displays nothing at all. only the lines which are ...
0
votes
1answer
169 views
Using SimpleCursorAdapter.ViewBinder to change color in a listView. android
I was trying to change color on a text in a ListView, so I created ViewBinder but my text is still white, nothing change, what can I do with it?
// map each name to a TextView
String[] from = new ...
1
vote
1answer
97 views
CustomSimpleCursorAdapter vs ViewBinder?
I have a list of items which is fetched from the local database. Every item has property isNew. I want to make visible TextView with text "new" only for items which match isNew = true. I solve this ...
0
votes
0answers
327 views
How to set Image source to a listView depending on database fill data
Basically what i'm trying to do is set dynamically a image source to a image view depending on the id that i get from a precreated database. this is my ListFragment:
public class teamsListFragment ...
-1
votes
1answer
2k views
How To Get The Current View - Android
I am getting NULL pointer exception currently, when I run this thread
public void run() {
long idle = 0;
this.touch();
do {
idle = System.currentTimeMillis() - lastUsed;
...
0
votes
3answers
585 views
Using cursor.respond(Bundle) & cursor.getextras()
I am having 2 cursors from different tables in an SQLite database. I am trying to put the data from the two cursors into one ListView but for different formatting for data from each cursor.
What I ...
0
votes
2answers
271 views
Populating listview with images - viewbinder or customcursoradapter? How to?
I'm trying to populate a listview with images, whose URI is returned from a cursor.
I'm not sure if I should use a viewbinder with my simplecursoradapter, or to create a custom simplecursoradapter ...
0
votes
1answer
95 views
ViewBinder creates random content
I have strange behavoir in a ViewBinder. All works good on TextViews. With CheckBoxes (removed in my code) and custom widgets progressChart the values are not stored in the right postion of the List ...
0
votes
2answers
275 views
CheckBox doesn't change state
I have a:
public class MyList extends ListActivity {
SimpleAdapter simpleAdapter;
Binding to the ListView is done by a ViewBinder:
simpleAdapter = new SimpleAdapter(this, getData(path),
...
1
vote
1answer
691 views
Better understanding of the SimpleAdapter's ViewBinder
I have 4 TextViews, 2 ImageViews, 2 Buttons and 2 widgets that are part of a row definition in a ListView. The data comes from XML and a SimpleAdapter. To access these TextViews I implement the ...
0
votes
1answer
62 views
ProgressBar in ViewBinder hast strange values
I have a SimpleAdapter with a ViewBinder. The ViewBinder binds some TextViews and a ProgressBar. The TextView works fine but when I scroll the list back I get weird values for the ProgressBar. Why ...
0
votes
1answer
330 views
ListView with conditional formatting doesn't work properly(using a ViewBinder)
Auxiliary Problem
Hi, could anyone please help me understand the behavior of SimpleCursorAdapter.ViewBinder.setViewValue?
It seems that it is called more than once for each row in the ListView. Does ...
1
vote
1answer
2k views
How to use SimpleAdapter.ViewBinder?
I have a list with a complex layout R.layout.menu_row. It consists of a ProgressBar and a text field. The adapter I use:
SimpleAdapter simpleAdapter = new SimpleAdapter(this, getData(path),
...
1
vote
2answers
236 views
Displaying an icon in a database using ViewBinder
I have successfully created a table using SQlite in android. There is a column for sex( male/female) in the database. What I would like to do is to is to check the sex type and display a male/female ...
0
votes
2answers
853 views
ListView image downloader concurrency issue
I am trying to lazy load images from network in a ``ListView. I have followed the tutorial from here.
It is very useful but unfortunately, even if I followed precisely what it is there (with the ...
0
votes
1answer
154 views
ViewBinder cast error with android 4.0
I get following error(line 19 is //XXX in the code):
04-10 10:35:08.301: E/AndroidRuntime(12417):
java.lang.ClassCastException: android.widget.TextView cannot be cast
to ...
0
votes
1answer
608 views
Lifecycle of calls when using the SimpleCursorAdapter.setViewImage
OK, trying to get images from my SD card to show in an activity ListView.
I'm reading lots of hints, but I'm missing an important chunk. I'd love to see a short-ish bit of source code that ...
0
votes
1answer
761 views
SQLite BLOB column to SimpleCursorAdapter with ViewBinder
I'm trying to display a list of contacts that are currently stored in a SQLiteDatabase.
Previously I've retrieved ContactsContract.Contacts.PHOTO_THUMBNAIL_URI and stored it in a form of byte[] in the ...
1
vote
2answers
2k views
Using SimpleCursorAdapter.ViewBinder to change the color of TextView
I'm developing an alarm clock app for android and I want to have displayed list of alarms on the main screen. Each row of this ListView is defined in xml file. And I want to have separate TextViews ...
2
votes
3answers
328 views
Using ViewBinder to update an image in a `ListView` row
I have a ListView populated from a SimpleCursorAdapter, each row containing some TextViews and an ImageView. I want to change the ImageView for each row depending on some values, however I'm trying to ...
1
vote
1answer
482 views
ViewBinder modifies only one item in all ListView rows
I have a ListView that's populated from a SimpleCursorAdapter each row containing 3 different TextViews. I only want to modify one of the TextViews for all rows with a ViewBinder (R.id.text65), ...
1
vote
3answers
511 views
getTag() always null in onListItemClick
I have a ListView that I'm populating with a CursorAdapter like this:
SimpleCursorAdapter.ViewBinder viewBinder = new SimpleCursorAdapter.ViewBinder() {
public boolean setViewValue(View view, ...
0
votes
1answer
124 views
How can I find a specific record in a ListView?
Let's say that I have a Cursor that has 50 records in it and it is bound to a ListView using a ViewBinder. I'd like to find a specific row(example: _id 35) and make sure that record is visible to the ...
1
vote
0answers
193 views
How to use ViewBinder in SimpleAdapter with contacts?
I want to setup a ViewBinder in a SimpleAdapter and put contact photo in it. Can someone show me how? In this code I'm putting the name and number from contacts in ListView, but I don't now how to put ...
1
vote
3answers
984 views
Changing text color in Listview using SimpleCursorAdapter.ViewBinder
I've listed the names from database using SimpleCursorAdapter and I want to change the color of a particular name using SimpleCursorAdapter.ViewBinder's method. I've a problem while running this ...
3
votes
2answers
1k views
SimpleCursorAdapter and ViewBinder - Binding data to ListView items to be retrieved on click
So I've got a ListView (using a ListActivity) that I'm populating from a SQLiteDatabase. I'm trying to attach the ID (PK) of the row to the view, so that onListItemClick of each list item, I can do ...
0
votes
1answer
295 views
ImageButton in ViewBinder doesn't work
I created a ViewBinder, to hold my items in a ListView, which get its contents from a SimpleCursorAdapter and in this there's a ImageButton. I successfully get the list but the ImageButton just won't ...
1
vote
0answers
357 views
How to set onClick listener for an ImageButton in ViewBinder?
I made a ListView with a SimpleCursorAdapter and a ViewBinder to set views for it, and I want to put an ImageButton in the ViewBinder but don't know how to set the onClick event. Should I create a ...
1
vote
4answers
835 views
CheckedTextView load default values from SimpleCursorAdapter
I have an adapter that uses a CheckedTextView and extends from a SimpleCursorAdapter. I tried to load the default values for CheckTextView but I didn't manage to do it. I don't know if this it's the ...
2
votes
2answers
2k views
Setting an image in ListView item using SimpleCursorAdapter and ViewBinder
Is there a way I could set an image to an ImageView inside a ListView? In this, I am using a SimpleCursorAdapter to display all the fields and using a ViewBinder to set the image bitmap to the ...
1
vote
2answers
3k views
Method for Spinner item click listener with SimpleCursorAdapter and ViewBinder
I got a Spinner element which I populate with data from a Cursor using a SimpleCursorAdapter. Also I'm using setViewBinder for a custom row layout of the Spinner. Everything works out fine, the ...
0
votes
1answer
1k views
Display text and image from database with SimpleCursorAdapter.ViewBinder
I show the data from database like text and image, but my code is not working. I use this tutorial for my project. This my java class:
public class PepakPostView extends ListActivity {
protected ...
2
votes
1answer
219 views
CursorAdapter 's ViewBinder lifecycle?
Can someone help me understand SimpleCursorAdapter.ViewBinder lifecycle in terms of methods: setViewValue, bindView when are they called? Are instances re-used? Any source to understand all of it?
I ...
1
vote
1answer
750 views
Using ViewBinder for a custom ListView item with TextView
I'm trying to add a background color for an TextView on my ListView using a SimpleCursorAdapter with ViewBinder, but it doesn't work:
listrow.xml:
<TextView
android:id="@+id/catcolor"
...
0
votes
1answer
985 views
ViewBinder setViewValue for ListView item leads to multiple CheckBoxes checked
I'm using a ListView which has:
list item click
CheckBox click
I can save the cursorPosition by using view.setTag(cursor.getPosition()) and I can take necessary action on the checked item but when ...
0
votes
1answer
164 views
How to update non-bound child view for ALL items in a ListView?
I have a ListView that uses a custom layout that has 5 child View objects (4 TextView and 1 CheckBox) in the custom layout. Only the TextViews are bound, however - the CheckBox has no corresponding ...
0
votes
2answers
625 views
Content of ListView takes to much memory
The ListView contains rather many items(20 or more), and each of them is an ImageView with a bitmap source. These bitmaps are not compressed and have size about 640x480. When the ListView is just ...
0
votes
1answer
103 views
Conditional action in ViewBinder
I wish to disable a line item for my ListView (using SimpleCursorAdapter with ViewBinder), but it doesn't work:
public boolean setViewValue(View view, final Cursor cursor, int columnIndex) {
...



