Tagged Questions
The listviewitem tag has no wiki summary.
8
votes
3answers
970 views
Buggy ListView makes me sad
I have a ListView where I've defined the layout of each item in a separate XML file. In this file I've included a RatingBar and an EditText.
I've programmatically created 7-8 items in this ListView. ...
8
votes
1answer
10k views
WPF ListView - how to add items programmatically?
Even if I know it's not ideal - I need to programmatically populate a listView (for whatever reason).
I am declaring my columns in the markup:
<ListView.View>
...
6
votes
3answers
4k 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 ...
5
votes
2answers
6k views
Android ListView with RadioButton in singleChoice mode and a custom row layout
I have a ListView, which is in singleChoice mode. All I want is to display a RadioButton to the side, that when clicked highlights to say it is selected, and when a different one is clicked that one ...
5
votes
3answers
249 views
Specified items will not be deleted when using ListView.Item.RemoveAt()
I have tried to remove specific items from a listview using the RemoveAt() method. But When I remove it the first time some items will stay.
For example: see the image below
Code:
private void ...
5
votes
2answers
687 views
Make highlight brush the same as control brush without specifying colour
I want to ensure that a selected ListViewItem's non-focused background is the same as the focused background. I know that the common way of doing this is as follows:
<SolidColorBrush ...
5
votes
3answers
4k views
Android: How to hide a ListView Item
How can you hide an item in a ListView or at least set its height to zero?
I have tried setting the visibility of the View to GONE but it still maintains the item's space (height).
5
votes
5answers
1k views
How can I set an icon for a ListViewSubItem?
In a ListView you can have icons on each item.
When viewing in Details-mode, the icon is shown in the left-most column.
Can I show an icon in some other column?
5
votes
7answers
1k views
WinForms ListView, Remembering Scrolled Location on Reload
I've got a list view that I'm populating with 8 columns of user data. The user has the option to enable auto refreshing, which causes the ListView to be cleared and repopulated with the latest data ...
5
votes
4answers
17k views
Programmatically Select Item in Asp.Net ListView
After doing a quick search I can't find the answer to this seemingly simple thing to do.
How do I Manually Select An Item in an Asp.Net ListView?
I have a SelectedItemTemplate, but I don't want to ...
4
votes
1answer
142 views
Get ListView item text from other window
I want to make a little application that changes the default playback device in windows 7. The only solution was to interact with the Sound Applet. I succeeded to get the handle to the SysListView32 ...
4
votes
3answers
979 views
How to Drag drop Listview item to another Listview
Hi I'm Raynast I'm a newbie for Android Programming
Now I have a little problem from my project about Listview Drag and Drop
I decide layout to Three Listview query from database
...
4
votes
2answers
215 views
Why does SubItems.Clear() also delete the Name attribute?
I am using a WinForms ListView in details mode (.NET 4.0, running on Windows 7) and I have a function that needs to clear the subitems in a particular item. Unfortunately when I do that it also ...
4
votes
2answers
985 views
How can I programmatically add a multi-column ListViewItem without any data binding?
I have a ListView with 3 headers, declared in XAML as follows:
<ListView Name="myListView">
<ListView.View>
<GridView>
<GridViewColumn Header="H1"/>
...
4
votes
1answer
3k views
How to disable items in a List View?
I have a list view which is populated via records from the database.
Now i have to make some records visible but unavailable for selection,
how can i achieve that?
here's my code
public class ...
4
votes
2answers
7k views
Android ListView item highlight programmatically
I know it's been asked around but I haven't found quite the answer yet (new to Android so sorry about the ignorance)
my app's launch Activity has an EditText (called searchbox) , a ListView ...
3
votes
2answers
229 views
How do I apply a style to the ListViewItems in WPF?
First of all, I am new to WPF.
I have this style ready for my items:
<Style x:Key="lvItemHover" TargetType="{x:Type ListViewItem}">
<Style.Triggers>
...
3
votes
1answer
793 views
Get ListView items from other windows
I'm doing some project on c#.
I need to get i item from ListView window, handle of it I got by doing something like this
IntPtr par_hWnd = API.FindWindow(null, "Form1");
IntPtr child1 = ...
3
votes
1answer
1k views
android.content.res.Resources$NotFoundException when programmatically setting android.R.attr.listChoiceIndicatorMultiple
I'm trying to programmatically set the "android:checkMark" attribute on CheckedTextView items I have in a ListView. When running my application I get the following exception:
...
3
votes
1answer
2k views
Android - listview item not selectable
I am implementing a simple application with ListView component. The ListView gathers its data from an SQLite DB, and renders the items in a TextView component. However, the items are not selectable, i ...
3
votes
2answers
1k views
android list view clickable problem
i have this customized list. each row contains an image and two lines of text one below the other. i want to open a new activity when any list item is clicked. but i am not able to do so, even after ...
3
votes
3answers
12k views
How to change color of ListView items on focus and on click
i have a list View in my app (this is the xml layout):
<?xml version="1.0" encoding="utf-8"?>
<ListView xmlns:android="http://schemas.android.com/apk/res/android"
...
3
votes
3answers
609 views
How to do custom ListView with colorful items' backgrounds?
I have created an ArrayList<HashMap<String, String>> collection to hold my data for ListView. I'm using SimpleAdapter.
Is it possible to change background of list item when list item's ID ...
3
votes
1answer
5k views
How to define ColorStateList for TextView?
When my ListViewItem is highlighted, I want the text to turn white. How can I define this?
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item ...
2
votes
1answer
190 views
Buttons in ListView only returns value of first index, doesn't update the index. So results are the same for all buttons.
<Button
android:text="More Info"
android:id="@+id/btninfo"
android:layout_width="wrap_content"
android:layout_height="35dp"
android:focusable="false"
android:focusableInTouchMode="false"
...
2
votes
2answers
2k views
C# Change ListView Item's/Row's height
I want to change the Item's/Row's height in listview.
I searched every where and I figured that in order to change the height I need to use LBS_OWNERDRAWFIXED or MeasureItem or something like that.
...
2
votes
2answers
114 views
ListView item backgrounds not changing
I have an unusual issue with my ListView. I currently have a "deselectAll()" method which iterates through the items in my ListView and sets them to unchecked (the items implement the Checkable ...
2
votes
1answer
137 views
Threads: BeginInvoke howto add a complete ListviewItem?
how can i add listview subitems through the BeginInvoke -> myDelegate process ?
I've tried various versions of solutions, but allways with error!
thanks a lot for help!
public delegate ...
2
votes
1answer
234 views
C# grab text from first item in listview in Details view
I have a listview (in Details view) that is filled dynamically. I want to grab the text from the the first item in the listview.
This code doesn't work
lstSalesppl.Items[0].Selected = true;
string ...
2
votes
1answer
180 views
How to display an Icon in a ListView subitem [closed]
Possible Duplicate:
How can I set an icon for a ListViewSubItem?
How to display an Icon in a ListView subitem
2
votes
3answers
719 views
Iterating ListView items in Android
I want to iterate a list of items into a ListView. This code below is not enough to iterate all the items into the list because of the weird behaviour of getChildCount() function which only returns ...
2
votes
1answer
2k views
Listview get item text
I need to grab selected item TEXT (not id).
What can I write under onListItemClick to do that?
I get:
java.lang.ClassCastException: org.eclipse.jdt.internal.debug.core.model.JDIObjectValue cannot be ...
2
votes
1answer
1k views
Android Custom ListView selected item children?
I have a custom listview row that contains a number of textView components. Instead of the "standard" single text item, I have created a item where each listview row contains several bits of ...
2
votes
2answers
2k views
ListView separators using a CursorAdapter
I have a ListView which is populated using a CursorAdapter. I'd also like to have some separators in my ListView. I have accomplished this with an ArrayAdapter, but I'm not sure how to accomplish ...
2
votes
1answer
202 views
How can I modify the background of a ListItem when it has been selected?
I have a ListView with a bunch of ListItem's. When the user selects an item, I would like to change that ListItem's background to an image. How can I accomplish this?
...
2
votes
3answers
1k views
android listview viewholder. when to use it, and when not to
I have a ListView with a custom list adapter. In the getView() method, am using the ViewHolder 'pattern' as shown in the API Demos for ListView14.java. When i first render the list it seems to load ...
2
votes
2answers
411 views
Drop Item into Specific Index in ListView in WPF C#
I have a list of files in a ListView in WPF. Users can drag files onto the list view, and right now they are just appended to the end of the list. Is it possible to insert the file into the ListView ...
2
votes
2answers
957 views
ListAdapter to modify the datasource (which is an arraylist)
here's a problem that i've run into lately:
I have a listview with a custom adapter class, the adapter takes in a listview and populates the listview with elements from it. Now, i'd like to have a ...
2
votes
3answers
824 views
How can I remove the selection border on a ListViewItem
I'm using SetWindowTheme and SendMessage to make a .net listview look like a vista style listview, but the .net control still has a dotted selection border around the selected item:
Selected items ...
2
votes
3answers
646 views
VB.NET typecasting a listview tag object
In C# i would do something like:
mytype val =
(mytype)mylistview.SelectedItems(0).Tag;
how can I do the same thing in VB.NET?
2
votes
1answer
112 views
make a class convertible to another class vb.net
Is it possible to make my custom item class so that I can put it straight into a listviewitem?
What I mean is a listview and I want to be able to do Listview.items(0) = Item
Or is this not possible?
...
2
votes
1answer
2k views
WPF ListView ItemTemplate questions
Let's say that I've got the following class hierarchy :
public static class Constants
{
public enum MyEnum
{
Value1 =0,
Value2,
Value3
}
}
public class Data : ...
2
votes
3answers
4k views
Determining which ListViewItem was clicked on in a ListView when executing a ContextMenu MenuItem
I'm trying to use the context menu in a listview to run some code that requires data from which item it originated from.
I initially just did this:
XAML:
<ListView x:Name="lvResources" ...
2
votes
1answer
1k views
What's the best way to auto-scroll a list view to the last added item?
I use a ListView to show a list of errors as they occur in my application. It behaves and looks exactly like the Error List in Visual Studio. I want to add auto-scrolling when the last error item is ...
2
votes
3answers
4k views
WPF ListViewItem lost focus event - How to get at the event?
I have a listview that you select a row/item on. This is linked to a datatrigger that displays an image on the row. The image should only be displayed when the row is selected.
This part works fine, ...
2
votes
2answers
5k views
WPF: Binding a listviewitem's background colour to a hex String property of an object
Hey. I have an object that has a string property called BackgroundColor. This string is the hexidecimal representation of a color. I cannot change this object.
I'm binding a collection of these ...
1
vote
1answer
98 views
Listview error: “Your content must have a ListView whose id attribute is 'android.R.id.list'”
I am getting an error in my logcat saying "Your content must have a ListView whose id attribute is 'android.R.id.list'". My code compiles and runs but force closes when I start my listview activity. ...
1
vote
0answers
53 views
Listview not rendering right on the second time the page is loaded
I'm having some issues with JqueryMobile. I load a page and create the Listview on the fly. The first time the page loads, the list gets rendered fine, when I go back to the previous page and click on ...
1
vote
1answer
41 views
Android: List elements, fixed layout
I've got a layout problem. What's odd, I couldn't find a solution online. Maybe someone here would like to help me?
I would like to display a list like that:
But all I can get is this:
Here's my ...
1
vote
1answer
59 views
Is there any simplier/better way to auto-size the content of one-column ListView?
Alright, sorry for my english in advance, here what I need:
I got a ListView in XAML (WPF) where there items is located and what I need is that items to have the width equal to the ListView's width.
...