ListAdapter is an Extended Adapter that is the bridge between a ListView or GridView and the data that backs the it. Frequently that data comes from a Cursor, but it could also come from an Array, or List of arbitrary Objects. ListView and GridView can display any data provided that it is wrapped in ...

learn more… | top users | synonyms

-2
votes
0answers
21 views

The method getFilter() is undefined for the type ArrayList<HashMap<String,String>>

I want to make an input search for listview in Android through the code below. I got this error: The method getFilter() is undefined for the type ArrayList<HashMap<String,String>> ...
0
votes
1answer
40 views

getItem(position) returns same object for different values of position

I have a adapter with the following piece of (test) code in public View getView(int position, View convertView, ViewGroup parent): Cursor itemCursor = (Cursor) getItem(position); Cursor ...
1
vote
2answers
36 views

Display different objects in the same ListAdapter

I would like to display different types of objects in the same ListView, but I don't know how to differentiate these Objects via getItem(position) The ListView displays a list of Messages which can ...
0
votes
0answers
19 views

Only one of my array adapters will work at a time in my row

I have two textfields in my row, and I'm using array adapters to assign their text. However, only one of them will work at a time. If I comment one out, then the other will work, and vice versa. What ...
0
votes
1answer
18 views

Why is my CustomAdapter not being used?

I created a class called FTPSite with getters and setters for name,address,username,password,port,passive mode. I'm trying to create site manager by using a custom adapter to show the site names ...
0
votes
0answers
20 views

Android overlapping text on AutocompleteTextView ArrayAdapter

The user types in a word in the AutoCompleteTextView, and database results come in showing matches. These results are in a List object and displayed via adapter. On most phones this works as ...
0
votes
4answers
68 views

data will not populate listview

I'm having issues populating my listview. I thought I had modifed my XML and adapters accordingly but apparently not. When the activity is loaded the dialog pops up stating it's loading then the app ...
1
vote
1answer
43 views

Android ListView “recycle” doesn't store rows which are not visible initially

There are maybe thousands of posts around the web about ListView and ListAdapter recycle process but I couldn't solve my problem so far. I have custom ListView rows and populate the items inside the ...
0
votes
0answers
28 views

getLoaderManager: in an activity

I am writing an app for a WIMMOne watch: no orientation changes, a small simple screen, and Android version 7. I got my first Android APP running, but based on a book, it had a fragment. But ...
0
votes
2answers
33 views

Activity lifecycle - array was erased

I have a problem with Activity life cycle. In my server communication Activity I am downloading the list of items from the server and then setting up the Adapter for the ListView. Everything is fine ...
1
vote
1answer
35 views

How do I dynamically change an Android ListAdaptor elements style base on a condition, for example change the color

'In the below android list adapter I wish to dynamically change the colour in the display of an element based on a condition, for example if TAG_AMOUNT is greater than 2 then the text view is red. ...
1
vote
3answers
39 views

Android CustomListAdapter with checkbox not working properly

I am working on a customlistadapter in which i have created a row with textview and checkbox . List is rendering properly but when i select one item some other items are selected automatically and ...
0
votes
1answer
59 views

Lazy Loading (Image + Text) for Linear Layouts

I am trying to implement an activity shown in the image(Wireframe) uploaded(). There could be n number of such items.(Lazy Loading is expected to be implemented.) Images are ImageButtons and ...
0
votes
3answers
48 views

Android call notifyDataSetChanged from AsyncTask

I've a custom ListAdapter that fetches data from internet in an AsyncTask. The data is added perfectly to the list, but when I try to do operations the application crashes... I'm sure this is ...
1
vote
1answer
55 views

SIGSEGV when setting backgroundDrawable for each element in ListView

I want to set something I have drawn on canvas as background of each element displayed in ListView. The drawing depends on the contents of the element and must be on Canvas, that's why I can not set ...
1
vote
1answer
31 views

Arraylist and ListView

I have a ListView, I created a custom adapter because in every row there must be two ImageView. My aim is to set on clicklistener one of them, and when I click it a new row must be created in a ...
1
vote
4answers
52 views

How to set text color for ListAdapter?

I defined a ListAdapter: setListAdapter(new ArrayAdapter<String>(TimeMode_Choose.this, android.R.layout.simple_list_item_1, Chooses)); Then I defined a background color: ...
0
votes
3answers
71 views

What is the best way to refresh a android's listview?

I want to refresh the listView after an insert or delete it in the database. I've searched and I found notifyDataSetChanged(), but I don't know how to use it. I used AsyncTask to get the data from ...
0
votes
1answer
41 views

Better to have multiple adapters or multiple activities?

I have a hierarchical data structure. As an example, lets consider my data television shows. Each show has multiple seasons and each season has several episodes. I want to have a list that displays ...
0
votes
1answer
25 views

Android Eclipse ListView

I have a custom Adapter & a ListView & I'm trying to add the items to it dynamically, not dynamically each item hard coded, I need the items to be added using a for loop or the sort. Here's ...
0
votes
1answer
67 views

Android App - trouble setting AlertDialog view with custom ListView

I am trying to use the following code to put a ListView with a custom ListAdapter into an AlertDialog. Currently the activity will display the AlertDialog, but with no ListView displayed: public ...
0
votes
1answer
41 views

List view is not populating with database when first time activity start

I am using SQlite Database.I create 2 tables and populate them(working fine) and use there data to show in list view. when first time list adapter is populating list view show newDATA varibale as ...
0
votes
2answers
99 views

How can I update the listview content each time on a button click?

I need to update my ListView content (which is retrieved from a database) each time when a button is clicked. I am trying to include a book search functionality in my android application. For that I ...
0
votes
3answers
53 views

Click on item in android ListActivity not working

I have ListActivity with custom ArrayAdapter and following layout for list items: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
0
votes
1answer
40 views

Listview wont show stackmob query list

Hello im trying to get stackmob to query a items to a listview everything is working except the result list appearing in the listview i have tried search all over the internet and have found nothing ...
0
votes
2answers
45 views

ClassCastException on SimpleAdapter in Android

I am trying to display a list of alarms in my Android application but I am getting an Exception. How can I resolve this? This is where I am trying I initialise the adapter: List<Alarm> ...
0
votes
1answer
79 views

android - list adapter problems

I have a listview which has a textview and a checkbox in a row. when I select a list item, the checkbox in that row is selected, in addition also an extra checkbox of different row is selected. any ...
0
votes
1answer
74 views

Xml pull parsing with customised adapter

Hi There I am very new to the android platform ..off late I was trying my hands on parsing rss feed using xml pull parser..My code works perfectly when I use the standard listview layout of ...
0
votes
1answer
60 views

Android Calling getview

I have a question about the method getview in android. My getview method(in the class QuestionsListAdapter): public View getView(int position, View convertView, ViewGroup parent){ QuestionView ...
0
votes
0answers
67 views

setAdapter Custom ListView in wizard generated swipe tab on ICS/JB

I am trying to extend the wizard generated swipe-tab app with a custom list view showing two lines per list item. In the associated layout XML file I added a ListView with name "section_list". I can ...
0
votes
1answer
57 views

Multiple line ListAdapter, using ListActivity

I've run in to a problem with my Android application. What I'm trying to do is parsing data from a JSON API and then put the gathered data into a multiple line list using ListActivity. However, I cant ...
0
votes
0answers
36 views

Customizing Original Adapter android

My original wheel adatper is as follows : public class CopyOfSecondWheelAdapter extends AbstractWheelTextAdapter { ArrayList<convertor_pst> PostList; public ImageLoader imageLoader; ...
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 ...
2
votes
2answers
56 views

How to fetch Selected value from the RadioGroup in the Customized Listview

In My application, i'm developing an application Student Ranking system. Here, is the link which i asked earlier. Now my requirement have filled but i couldn't access the data in it.. public class ...
0
votes
2answers
74 views

Custom ListView + getView method

I need help with custom adapter with getView() method. When adapter create a list in getView() method called every time rendering like holder.textEpisode.setTextColor() etc. This gives heavy load and ...
-1
votes
2answers
47 views

layout element wouldn't be recognized

I'm using the following code to display a list view from the database ;However, it seems some of the layout element is not recognized .. Could any one tell me why ? this is the Logcat message: your ...
0
votes
1answer
48 views

remove row from another activity

I have a listview which is inflated by custom array adapter and onclick takes it to another activity with the data related to that row .After clicking on delete its supposed to delete the item from ...
0
votes
0answers
67 views

How can I get arraylist of my data

I am working on list adapter, here I am using sessions to load the ArrayList in adapter. and i am initializing like this type. ArrayList<Session> sessions = new ArrayList<Session>(); ...
0
votes
2answers
50 views

Deleting item from a Custom ListView

I have a Custom ListView which is propulated with retrieved from a database. Now, what I can't understand is how to remove an item from the list: searching on Google I've seen different questions ...
1
vote
1answer
87 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 ...
0
votes
1answer
232 views

ListFragment OnListItemClick ignoring me, Not focusable views

I have the same problem as this previous post: ListFragment OnListItemClick not being called but its solution is not working for me... My stuff is not focusable and still no click events received to ...
0
votes
3answers
163 views

Why does ImageView.setAlpha() set alpha to multiple ImageViews in a GridView?

I'm implementing a custom gallery that allows multiple photo selection. I'm using a GridView with a simple ImageAdapter class extended from BaseAdapter. Here is my ImageAdapter class: public class ...
2
votes
2answers
86 views

Button/View still showing in ListView after setting it's visibility to View.Gone (Solved)

I have a ListView which displays different items to be purchased. If user selects an item, then I set "Buy" and "Add" buttons as visible. When user clicks any other item then Visibility of previously ...
0
votes
1answer
110 views

get cursor data from sqlite into string array

Newbee question: Both snippets below work, either from string array or cursor from SQLite table. Now, how do I get these values from the table into a string array so I can manipulate them, then ...
0
votes
0answers
48 views

Sync Android ListView with backend

I am using Parse as a backend for my Android app. I would like to sync a ListView with the Parse backend. Everything I have read about synchronising Android and db is SQL based. However in Parse I ...
1
vote
1answer
57 views

Android, How to replace Fragment directly from list?

I have a FragmentActivity that acts as a holder for my fragments. public class MainScreen extends FragmentActivity { @Override protected void onCreate(Bundle savedInstanceState) { ...
0
votes
2answers
89 views

Downloading Image only for visible row in List View

I have a customized List and each row showing image and text and image has to be downloaded from server. So I have customized my adaptor and in that getView method i have started a asyn task for ...
0
votes
0answers
113 views

How to refresh items in ListFragment when scrolling?

I have a FragmentActivity, which loads several fragments. One of that fragments is that class. The fragment has a ListView, so it's a ListFragment. This is the code of my class: import ...
0
votes
2answers
45 views

How to handle prohibition of network-on-thread and need to update list adapter on UI thread?

Developing an Android application which uses CouchBase as its datastore. All interaction with Couch is via HTTP so it cannot be done on UI thread. This is ordinarily something we can work around ...
0
votes
0answers
73 views

Re-populate ListView Items in Reverse when Removing an Item

When a ListView's item is removed, the default behavior is such that the space generated from the removed item is filled in with the item immediately below it. Subsequently, all items are propagated ...

1 2 3 4 5 9