A ListView is a graphical screen control or widget provided by UI libraries in majority of modern operating systems.
545
votes
16answers
239k views
How do I do a lazy load of images in ListView
I am using a ListView to display some images and captions associated with those images. I am getting the images from the Internet. Is there a way to lazy load the images so while the text displays, ...
451
votes
22answers
98k views
Stop EditText from gaining focus at Activity startup
I have an Android Activity, with two elements:
EditText
ListView
When my Activity starts, the EditText immediately has input focus (flashing cursor). I don't want any control to have input focus ...
199
votes
4answers
37k views
Background ListView becomes black when scrolling
I have created a specific List which exists out of the following elements to create a scrollable list with every row containing a Image on the left side and some text on the right side :
To begin ...
117
votes
9answers
44k views
How to implement Android Pull-to-Refresh
In Android applications such as Twitter (official app), when you encounter a ListView, you can pull it down (and it will bounce back when released) to refresh the content.
I wonder what is the best ...
114
votes
4answers
61k views
How to make a nice looking ListView filter on Android [closed]
I want a nice looking filter for my ListView in Android.
How can I do this?
99
votes
5answers
42k views
Android Endless List
How can I create a list where when you reach the end of the list I am notified so I can load more items?
95
votes
1answer
35k views
ListBox vs. ListView - how to choose for data binding [closed]
I'm considering either a ListBox or a ListView for a WPF application. It seems either supports data binding and item templates. My application has a simple list of items that I intend to be able to ...
94
votes
8answers
35k views
How can I make a horizontal ListView in Android? [duplicate]
Possible Duplicate:
Horizontal ListView in Android?
Like many things in Android, you wouldn't think this would be such a hard problem but ohhh, by golly, would you be wrong. And, like many ...
90
votes
5answers
56k views
Android: ListView with rounded corners
I was wondering if there was a way to create a ListView with rounded corners in Android...
83
votes
10answers
18k views
How to Animate Addition or Removal of Android ListView Rows
In iOS, there is a very easy and powerful facility to animate the addition and removal of UITableView rows, here's a clip from a youtube video showing the default animation. Note how the surrounding ...
81
votes
7answers
74k views
How to refresh Android listview?
I want to refresh an Android ListView after adding/deleting dynamic data.
Can any one tell me how to achieve this?
73
votes
5answers
53k views
Maintain/Save/Restore scroll position when returning to a ListView
I have a long ListView that the user can scroll around before returning to the previous screen. When the user opens this ListView again, I want the list to be scrolled to the same point that it was ...
66
votes
1answer
83k views
Add dynamically elements to a listView Android
Can anyone explain me or suggest me a tutorial where I find how can I create a listView in android, that let me to add dynamically new elements with the pressing of a button, but with the simplest ...
66
votes
4answers
95k views
Android - ListView click HOWTO?
How do I listen to click event on a ListView?
This is what I have now
ListView list = (ListView)findViewById(R.id.ListView01);
...
list.setAdapter(adapter);
When I do the following
...
66
votes
7answers
60k views
Android Layout with ListView and Buttons
Alright, this specific layout is just annoying me. And can't seem to find a way to have a listView, with a row of buttons at the bottom so that the listview doesn't extend over top of the buttons, and ...
62
votes
7answers
84k views
Android: ListView elements with multiple clickable buttons
I've a ListView where every element in the list contains a TextView and two different Buttons. Something like this:
ListView
--------------------
[Text]
[Button 1][Button 2]
--------------------
...
60
votes
10answers
37k views
Android: disabling highlight on listView click
I want to disable the orange highlight that occurs when touching a listView row. So far in my xml I have tried the following:
android:focusable="false"
android:focusableInTouchMode="false"
...
58
votes
3answers
32k views
Android List View Drag and Drop sort
I have a list of records in a listview that I want the user to be able to re-sort using a drag and drop method. I have seen this implemented in other apps, but I have not found a tutorial for it. It ...
51
votes
10answers
43k views
Horizontal ListView in Android?
Is there any Possible to make the ListView horizontally? I done this Using Gallery view. But the Selected item comes to the center of the Screen Automatically. I want to avoid it. the selected item at ...
50
votes
3answers
30k views
Android Listview with different layout for each row
I am trying to determine the best way to have a single listview contains different rows styles. I know how to create a custom row + custom array adapter to support a custom row for the entire list ...
49
votes
8answers
58k views
How to make a ListView transparent in Android?
How to make the ListView transparent in android?
The background android screen image should be visible.
49
votes
3answers
30k views
Using a ListView to create a settings screen in Android?
I'm developing my first Android application, and I'd like to create a settings screen.
I'd like the screen to have a similar look-and-feel as the native phone-settings screens and the native ...
48
votes
8answers
38k views
How can I put a ListView into a ScrollView without it collapsing?
I've searched around for solutions to this problem, and the only answer I can find seems to be "don't put a ListView into a ScrollView". I have yet to see any real explanation for why though. The ...
48
votes
1answer
7k views
ArrayIndexOutOfBoundsException with custom Android Adapter for multiple views in ListView
I am attempting to create a custom Adapter for my ListView since each item in the list can have a different view (a link, toggle, or radio group), but when I try to run the Activity that uses the ...
48
votes
9answers
24k views
Android, ListView IllegalStateException: “The content of the adapter has changed but ListView did not receive a notification”
What I want to do: run a background thread which calculates ListView contents and update ListView partially, while results are calculated.
What I know I have to avoid: I cannot mess with ListAdapter ...
45
votes
2answers
2k views
Android smoothScrollBy behaving badly
I have a ListView that I am calling smoothScrollBy() on. 95% of the time, the smoothScrollTo() behaves as intended. However there are times that it does not end up in the intended spot! I have ...
42
votes
5answers
21k views
Spacing between listView Items Android
I tried to use marginBottom on the listView to make space between listView Item, but still the items are attached together.
is it even possible? if yes, is there a specific way to do it?
my code is ...
42
votes
6answers
144k views
C# listView, how do I add items to columns 2, 3 and 4 etc?
To add items to column 1 in my listView control (Winform) I'm using listView1.Items.Add, this works fine but how do I add items to columns 2 and 3 etc? It's the first time I've used listView.
Thanks
41
votes
6answers
26k views
Listview Scroll to the end of the list after updating the list
I would like to after I have updated by listAdapter I want to make sure that the list is scrolled all the way to the bottom so that it displays the last element entered in the list How can I do this ?
...
39
votes
3answers
31k views
WPF ListView: Attaching a double-click (on an item) event
I have the following ListView:
<ListView Name="TrackListView">
<ListView.View>
<GridView>
<GridViewColumn Header="Title" Width="100" ...
36
votes
6answers
36k views
Detecting which selected item (in a ListView) spawned the ContextMenu (Android)
I have a ListView that will allow the user to long-press an item to get a context menu. The problem I'm having is in determining which ListItem they long-pressed. I've tried doing this:
...
36
votes
4answers
30k views
WPF ListView turn off selection
I have a simple WPF ListView and a simple question:
Is it possible to turn off the selection, so when user clicks row, the row is not highlighted?
I would like the row 1 to look just like row 0 ...
35
votes
3answers
14k views
WPF ListView Inactive Selection Color
I'm creating a WPF application where several ListView selections are made in a row (similar to the iTunes browser). The problem is that the default inactive selection color is too light. (see below)
...
34
votes
15answers
79k views
Changing background color of ListView items on Android
How can I change background color of ListView items on a per-item basis. When I use android:backgroundColor in the ListView item layout I can achieve this, however the list selector is no longer ...
34
votes
9answers
49k views
ListView item background via custom selector
Is it possible to apply a custom background to each Listview item via the list selector?
The default selector specifies @android:color/transparent for the state_focused="false" case, but changing ...
34
votes
7answers
12k views
Hide footer view in ListView?
I have a ListView. The data behind it is fetched from the Internet, in sets of 10-30 items whenever the user scrolls all the way to the bottom. In order to indicate that it is loading more items, I ...
32
votes
2answers
20k views
How to Get a Layout Inflater Given a Context?
I am writing a custom implementation of a ListAdapter.
In its constructor, I'm taking in a Context, a resource ID (i.e. R.id.xxx representing the layout file), and a list and a map (these contain the ...
31
votes
6answers
17k views
custom listview adapter getView method being called multiple times, and in no coherent order
I have a custom list adapter:
class ResultsListAdapter extends ArrayAdapter<RecordItem> {
in the overridden 'getView' method I do a print to check what position is and whether it is a ...
30
votes
5answers
24k views
Showing empty view when ListView is empty
For some reason the empty view, a TextView in this case, always appears even when the ListView is not empty. I thought the ListView would automatically detect when to show the empty view.
...
30
votes
6answers
53k views
How to autosize and right-align GridViewColumn data in WPF?
How can I:
right-align the text in the ID column
make each of the columns auto size according to the text length of the cell with the longest visible data?
Here is the code:
<ListView ...
30
votes
5answers
34k views
Best way to make WPF ListView/GridView sort on column-header clicking?
There are lots of solutions on the internet attempting to fill this seemingly very-basic omission from WPF. I'm really confused as to what would be the "best" way. For example... I want there to be ...
30
votes
1answer
5k views
How does setting baselineAligned to false improve performance in LinearLayout?
I was just building some UI in xml, and Lint gave me a warning and said to set android:baselineAligned to false to improve performance in ListView.
The docs for the Lint changes that added this ...
29
votes
6answers
19k views
c# flickering Listview on update
I have a list view that is periodically updated (every 60 seconds). It was anoying to me that i would get a flicker every time it up dated. The method being used was to clear all the items and then ...
29
votes
3answers
62k views
Android: Binding data from a database to a CheckBox in a ListView?
I'm trying to bind data from my SQLiteDatabase to a ListView. I'm currently using a SimpleCursorAdapter to fill in my ListView. Unfortunately this doesn't seem to work with setting a CheckBox's ...
28
votes
4answers
24k views
How can I implement a ListView without ListActivity? (use only Activity)
I'm new to Android, and I really need to do it this way (I've considered doing it in another Activity), but can anyone show me a simple code (just the onCreate method) that can do Listview without ...
28
votes
3answers
25k views
WPF ListView with horizontal arrangement of items?
I want to lay out items in a ListView in a similar manner to the WinForms ListView in List mode. That is, where items are laid out not just vertically but horizontally in the ListView as well.
I ...
26
votes
5answers
15k views
Android column '_id' does not exist?
I'm having trouble with something that works in the Notepad example.
Here's the code from the NotepadCodeLab/Notepadv1Solution:
String[] from = new String[] { NotesDbAdapter.KEY_TITLE };
int[] to = ...
26
votes
3answers
33k views
Android ListView Headers
How do you make those standard header labels in the ListView Control?
An example would be in the contacts application you see the first letter of the grouped contacts for each letter in the alphabet.
...
25
votes
8answers
24k views
Multiple choice list with custom view?
I've seen example com.example.android.apis.view.List11 from ApiDemos. In that example, each row takes the view android.R.simple_list_item_multiple_choice. Each such view has a TextView and a CheckBox.
...
24
votes
1answer
50k views
Dynamic ListView in Android app
Is there a working example out there that demonstrates how to append additional rows in ListView dynamically?
For example:
you are pulling RSS feeds from
different domains
you then display the first ...

