active questions tagged listview - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T09:52:08Zhttp://stackoverflow.com/feeds/tag/listviewhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1373755/wpf-listview-resizing-madness0WPF ListView resizing madnessJose2009-09-03T14:30:13Z2009-11-26T22:00:02Z
<p>I am trying to resize a ListView in WPF. I want to figure out how to force a ListView to shrink it's width to only fit the width of it's columns. I have a ListView that I bind using the View property and add some GridViewColumns like so:</p>
<pre><code> <ListView ItemsSource="{Binding MyCollection}">
<ListView.View>
<GridView>
<GridViewColumn Header="Name" Width={Binding NameWidth} DisplayMemberBinding="{Binding Name}"/>
<GridViewColumn Header="Fee" DisplayMemberBinding="{Binding Fee}"/>
</GridView>
</ListView.View>
</ListView>
</code></pre>
<p>I bind the width of the column so that I can hide/unhide the column. When I unhide a column the ListView grows to accommodate the new width. But when I hide the column again the ListView's width doesn't shrink. </p>
<p>I have tried to subclass the ListView and call some commands like </p>
<p>InvalidateArrange(), InvalidateMeasure(), InvalidateVisual(). But none of them cause the ListView to shrink.</p>
<p>If I reload the Collection to the ListView it does shrink to fit. But I think that is not elegant, nor the right way to do it. I have journeyed through Reflector to find myself in a quagmire of confusion. Can someone give me some insight?</p>
http://stackoverflow.com/questions/1804282/grouped-gridview0Grouped GridviewSam_Cogan2009-11-26T15:22:32Z2009-11-26T21:32:40Z
<p>I am in the process of transitioning an Access DB to a Web application. The Access DB currently produces reports using grouping e.g.:</p>
<pre><code>Country
-------------------------------------------------------
County
-------------------------------------------------------
City Name | Population | Post Code |
</code></pre>
<p>I'm trying to reproduce this using asp.net. I guess I could manually code up a table to do this, but it seems like there should be a better way. By the looks of it this is not possible with a Gridview, without alot of hacking. I had thought a listview would do what I want, but it seems the grouping in that only lets you group by number of records, not by a parent field.</p>
<p>Is there anyway to do this using a .net control or should I be concentrating on doing it manually with a table and code in the aspx page.</p>
http://stackoverflow.com/questions/1804782/free-winforms-datagrid-or-listview-with-grouping-capabilities1Free Winforms DataGrid or ListView with Grouping CapabilitiesDGilbertoni2009-11-26T17:00:29Z2009-11-26T17:07:51Z
<p>Does anybody know a free datagrid or listview control with grouping and master/detail capabilites?</p>
http://stackoverflow.com/questions/1803111/android-how-to-get-every-rows-imageview0android how to get every row's imageviewFaisal khan2009-11-26T11:20:35Z2009-11-26T15:46:32Z
<p>I am having custom Listview. Every row in listview contains image and textview.</p>
<p>After finishing the page I want to execute a thread which will get the reference of all the rows then will extract imgeview and set resource image as lazy loading image.</p>
<p>I just want to know how to get every row's image view so that I can set image resource in it. Any idea ????</p>
http://stackoverflow.com/questions/1803989/setting-a-column-style-unmanaged-c0Setting a column style? (Unmanaged c++)Zenox2009-11-26T14:29:25Z2009-11-26T15:34:01Z
<p>I'm currently able to set a listview style VIA the ListView_SetExtendedListViewStyle method, however this makes all columns have the same style. My goal is to only modify one column (to basically have the LVS_EX_UNDERLINEHOT|LVS_EX_UNDERLINECOLD|LVS_EX_TWOCLICKACTIVATE style).</p>
<p>Is there a way to modify the style of only one column and not the entire table?</p>
<p>Edit: Or even a way to custom draw the cell?</p>
http://stackoverflow.com/questions/1803525/how-can-i-access-a-control-within-a-listview-once-a-button-has-been-clicked-asp0How can i access a control within a ListView once a button has been clicked (ASP.NET c#)?Stephen2009-11-26T12:56:18Z2009-11-26T14:14:26Z
<p>I need to access a label control in a listview when i've clicked a button (that is on the same row)...</p>
<p>Does anyone know how to do this please? :(</p>
<p>See below for more of an insight...</p>
<p>ASPX Page:</p>
<pre><code><asp:ListView ID="ListView1" runat="server" DataSourceID="DataSource">
<LayoutTemplate>//Etc </LayoutTemplate>
<ItemTemplate>
<asp:Label ID="lblDone" runat="server" Visible="false">Your vote has been counted</asp:Label>
<asp:Button ID="voteButton" runat="server" Text="Vote" CommandArgument='<%#Eval("id") %>'
OnClick="voteOnThis" />
</ItemTemplate>
</code></pre>
<p>Code Behind:</p>
<pre><code>protected void voteOnThis(object sender, EventArgs e)
{
Button myButton = (Button)sender;
Voting.vote(int.Parse(myButton.CommandArgument));
// Here i would like to access the 'label' lblDone and make this Visible
}
</code></pre>
http://stackoverflow.com/questions/540860/listview-mouseclick-event0ListView MouseClick EventAdam Tunbridge2009-02-12T11:11:35Z2009-11-26T13:45:47Z
<p>Hi. I have a ListView whereby I want to display one context menu if an item is right-clicked, and another if the click occurs in the ListView control. The problem I'm getting is the MouseClick event is only firing when an item is right-clicked, not the control. What's causing this and how can I get around it?</p>
http://stackoverflow.com/questions/1803428/how-can-i-access-a-control-within-a-listview-once-a-button-has-been-clicked-asp0How can i access a control within a ListView once a button has been clicked (ASP.NET c#)?Stephen2009-11-26T12:33:37Z2009-11-26T12:45:47Z
<p>I need to access a label control in a listview when i've clicked a button (that is on the same row)...</p>
<p>Does anyone know how to do this please? :(</p>
<p>See below for more of an insight...</p>
<p>ASPX Page:</p>
<pre><code><asp:ListView ID="ListView1" runat="server" DataSourceID="DataSource">
<LayoutTemplate>//Etc </LayoutTemplate>
<ItemTemplate>
<asp:Label ID="lblDone" runat="server" Visible="false">Your vote has been counted</asp:Label>
<asp:Button ID="voteButton" runat="server" Text="Vote" CommandArgument='<%#Eval("id") %>' OnClick="voteOnThis" />
</ItemTemplate>
</code></pre>
<p>Code Behind:</p>
<pre><code>protected void voteOnThis(object sender, EventArgs e)
{
Button myButton = (Button)sender;
Voting.vote(int.Parse(myButton.CommandArgument));
// Here i would like to access the 'label' lblDone and make this Visible
}
</code></pre>
http://stackoverflow.com/questions/1768391/how-to-detect-android-listview-scrolling-stopped0how to detect Android ListView Scrolling stopped?koji lin2009-11-20T04:44:45Z2009-11-25T22:06:54Z
<p>Hi all,
I'm trying to do something after scrolling stopped.So, I tried using OnScrollListener#onScrollStateChanged(SCROLL_STATE_IDLE) to detect when the scrolling stopped(either TOUCH_SCROLL or FLING)(at 1.5 it's runs as i expect).
But when it runs on 2.0, onScrollStateChanged can't received the event after releasing the finger.Is there any callback or anyway to detect that event? </p>
http://stackoverflow.com/questions/1799507/combo-box-inside-of-list-control-unmanaged-c0Combo box inside of list control? (Unmanaged C++)Zenox2009-11-25T19:49:02Z2009-11-25T20:37:10Z
<p>I'm using unmanaged C++ and I was wondering if I could embed a combo box inside a column of my List View. I have tried googling for information, however I keep finding C# articles on the subject.</p>
<p>It seems like the LVCOLUMN's mask can support text and images but I am not finding anything about controls.</p>
<p>Any ideas on the subject would be great.</p>
http://stackoverflow.com/questions/1576674/wpf-listview-always-focused-last-added-item2WPF ListView Always focused last added item ?stefan2009-10-16T07:45:45Z2009-11-25T17:12:20Z
<p>Hi!</p>
<p>I have many ListViews with the same DataSource with <code>IsSynchronizedWithCurrentItem="True"</code>
and I'm dynamicaly adding items to this DataSource.</p>
<p>The problem ist when the scrolls appears, <strong>the added items are not visible</strong> unless I move the scrollbar. Should I use another Control for this purpose.. or how can bring the last added item into view (and scrollbars).</p>
<p>Until now I was doing everything directly in XAML, so I'd appreciate such a solution if possible.</p>
http://stackoverflow.com/questions/1797086/winforms-listview-empty-rows-glitch0WinForms ListView empty rows glitchFilini2009-11-25T14:00:33Z2009-11-25T16:50:47Z
<p>I have a glitch in a WinForms C# ListView (with custom modifications to sort and filters on all columns, but it happened also in a standard ListView).</p>
<p>I modify the ListView Items with this (fairly standard) pattern:</p>
<pre><code>BeginUpdate();
// add some items
// remove some other items
Sort();
EndUpdate();
</code></pre>
<p>But if I call this code when the ListView is already scrolled, then I get some empty (non selectable) rows before the real items, and 2 scrollabars even if they are not needed. </p>
<p>It looks like a graphic glitch, because when I scroll the list then the empty items disappear.</p>
<p>Have anyone met this problem before?</p>
http://stackoverflow.com/questions/1797482/how-can-i-synchronise-column-orders-in-two-listviews0How can I synchronise column orders in two listviews?Simon2009-11-25T14:57:26Z2009-11-25T15:16:39Z
<p>I have two ListViews in my app, with an initially identical collection of columns. When the user reorders the columns in one, I want the columns in the other to be reordered.</p>
<p>I have the following event handler on one of the views' ColumnReordered event, and the corresponding handler on the other:</p>
<pre><code>private volatile bool reorderingColumns;
private void listView1_ColumnReordered(object sender, ColumnReorderedEventArgs e)
{
// Prevent reentry - is this necessary?
if (reorderingColumns)
return;
try
{
reorderingColumns = true;
// copy display indices to the other listView
for (int i = 0; i < columnInfo.Count; i++)
{
listView2.Columns[i].DisplayIndex = listView1.Columns[i].DisplayIndex;
}
}
finally
{
reorderingColumns = false;
}
}
</code></pre>
<p>however, the order of the columns in the second listview remains unchanged. What do I need to do to get the second listview to redraw its columns in the new order?</p>
http://stackoverflow.com/questions/1796092/custom-controls-in-a-row-of-a-list-view0Custom controls in a row of a list viewSudarsan Srinivasan2009-11-25T10:43:38Z2009-11-25T14:11:46Z
<p>I want a list view control (or any list like control) in which each row (item), not only has text, but also some other controls. For example, each row (item) in my list view is composed of a checkbox, button, a slider, a image and a label. I tried the corresponding renderer classes (CheckBox renderer) in the owner drawn event, but i am not able to handle the events (as they are just used to render the control on the screen).</p>
<p>I tried to search for solutions, but in vain. So I have decided to have a panel and then create objects of those controls in runtime, for each item and add it to the parent panel. Is the solution ok? I feel this to be process costly. Help me out !!</p>
<p>Note, <em>I am using WinForms and no DataTemplates or WPF stuffs</em></p>
http://stackoverflow.com/questions/1340069/finding-state-of-controls-in-a-listview0Finding state of controls in a ListViewRaj2009-08-27T10:06:06Z2009-11-25T09:25:20Z
<p>Hello,</p>
<p>I have a listview bound to a datasource, each row has a checkbox control on it, what i want to acheive is when i press a button, i want to check through all of the checkboxes in the listview and check if any of them have been ticked. </p>
<p>What i tried first was to add a onclick event to a button and loop around the listview.items and check the "checked" state of the checkbox control, however, this always returned "false" even if they have ticked the item.</p>
<p>The only way i could get it to work is if i looped around all the listview items inside the onItemDataBound event, however this doesnt seem the most efficient way of doing it as it will call onItemDataaBound for every item in the listview, (thus called foreach on the listview.items each time)</p>
<p>I then tried doing the same on the OnDateBound event instead as this is only called once, but i ran into the same problem, it sees the checkboxes "checked" field as false all the time, i was wondering if anyone could point me into the right direction of the proper way to do it.</p>
<p>thanks
Raj.</p>
http://stackoverflow.com/questions/733053/wpf-listview-lost-the-focus3wpf listview lost the focusAmirAliAkbari2009-04-09T06:31:29Z2009-11-25T06:19:39Z
<p>Hi everyone!</p>
<p>I have some strange behavior of ListView control in WPF.</p>
<p>We are developing application in C#.</p>
<p>I created ListView with some items and set SelectedIndex to some index in
the middle of its list. Then I clicked mouse at any place on the ListView and
then navigate with Up/Dows keyboard keys, everything works perfectly. But If
I move focus to another control and then tries to set focus back to ListView
control programmatically, then I'm getting the problem.</p>
<p>The ListView gets the focus, but when I’m trying to navigate with the
keyboard, current selection will be canceled and the first item will be
selected and navigation will start from the first item in list.</p>
<p>I'm setting focus to ListView control by calling to its .Focus() method.</p>
<p>It looks like even ListView control in focus, but no items actually in
focus, even if SelectedIndex has some valid values.</p>
<p>Please, help me! How can I set focus to ListView control programmatically to
prevent such behavior?</p>
<p>i find out that my listview selected index is different from the focused item .
who ???</p>
<p>in selectedindex_changed event i set the selected index to the fix item (5) , but when i press arrow keys the item was changed . that mean the selected index is fixed to 5 but the current item(shown with a dot border around it ) moved to the arrow key location .
anyway my selecteditem is fix to 5 , but my scrollviews moves to position that current item is .</p>
<p>this code is in listView1_SelectionChanged:
listView1.SelectionMode = SelectionMode.Single;
listView1.SelectedIndex = 5;</p>
<p>my listview has a modified view :
</p>
<pre><code> <l:PlainView x:Key="tileView"
ItemTemplate="{StaticResource centralTile}"
ItemHeight="120" ItemWidth="130" />
</code></pre>
<p>i dont know about the problom any more .</p>
<p>regards</p>
http://stackoverflow.com/questions/48616/asp-net-how-to-access-controls-in-listviews-layouttemplate0[ASP.NET] How to access controls in listview's layouttemplate?Serhat Özgel2008-09-07T17:54:48Z2009-11-25T04:09:35Z
<p>How do I set a property of a user control in listview's layouttemplate from codebehind?</p>
<pre><code><asp:ListView ...>
<LayoutTemplate>
<myprefix:MyControl id="myControl" ... />
</LayoutTemplate>
...
</asp:ListView>
</code></pre>
<p>I want to do this:</p>
<pre><code>myControl.SomeProperty = somevalue;
</code></pre>
http://stackoverflow.com/questions/1788016/wpf-name-in-one-column-textbox-listbox-slider-in-the-other0wpf: name in one column, TextBox/ListBox/Slider in the otherMartin2009-11-24T05:35:03Z2009-11-24T06:27:20Z
<p>I would like to display a bunch of settings in a window and offer different ways for the user to set them (TextBox, ListBox, etc).<p></p>
<p>One column has the names of the settings, and the other has the controls. Should I use a ListView for that? Can I use data binding? How do I specify a different control per row in the ListView?</p>
http://stackoverflow.com/questions/1489216/asp-net-use-asplistbox-in-listview0ASP .NET - Use asp:ListBox in ListViewJohn M2009-09-28T20:33:21Z2009-11-23T19:03:42Z
<p>In a ASP .NET 3.5 ListView <strong>InsertItemTemplate</strong> I would like to change a textbox:</p>
<pre><code><asp:TextBox ID="txt" runat="server" Text='<%# Bind("plant") %>' />
</code></pre>
<p>to a ListBox:</p>
<pre><code><asp:ListBox ID="list" runat="server" DataValueField='<%# Bind("plant") %>' >
</code></pre>
<p>How do I bind the field 'plant' to the listbox?</p>
<p><strong>UPDATE 1</strong></p>
<p>Here is a sample of using a combobox with the SelectedValue property:</p>
<pre><code><cc1:ComboBox ID="ComboBox1" AutoPostBack="false"
DropDownStyle="DropDownList" AutoCompleteMode="Suggest"
CaseSensitive="false" CssClass="AjaxToolkitStyle"
ItemInsertLocation="Append"
SelectedValue='<%# Bind("car") %>' runat="server">
<asp:ListItem>Porsche</asp:ListItem>
<asp:ListItem>VW</asp:ListItem>
<asp:ListItem>BMW</asp:ListItem>
<asp:ListItem>UNK</asp:ListItem>
</cc1:ComboBox>
</code></pre>
http://stackoverflow.com/questions/1254105/update-a-xaml-control-template-from-c0Update a XAML control template from C#jk20042009-08-10T10:17:41Z2009-11-23T19:00:04Z
<p>I have a control template in XAML that contains a listview with a gridview. I want to bind the listview to a datatable created within C# but I can’t see the listview to do this because it is within a control template. I’ve created the equivalent listview in C# by referencing the control template and its contents and thought that I would be able to use this to set the binding but it hasn’t worked. Does any one have any suggestions? </p>
<pre><code><ControlTemplate x:Key="HistoryView" TargetType="{x:Type ListViewItem}">
<StackPanel x:Name="stkBonusHistory" Height="400" Visibility="Visible">
<GridViewRowPresenter Content="{TemplateBinding Content}" Columns="{TemplateBinding GridView.ColumnCollection}"/>
<!--this is the listview which I am hoping to turn into the "expander" detail-->
<ListView x:Name="lvBonusHistory" Width="950" Visibility="Visible" Height="300">
<ListView.View>
<GridView x:Name="gvBonusHistory" ColumnHeaderTemplate="{StaticResource GridViewHeader}" >
<GridViewColumn Header="Bonus Start" DisplayMemberBinding="{Binding BonusStart}" Width="150"/>
<GridViewColumn Header="Bonus End" DisplayMemberBinding="{Binding BonusEnd}" Width="150"/>
<GridViewColumn Header="Length" DisplayMemberBinding="{Binding Duration}" Width="75"/>
<GridViewColumn Header="Status" DisplayMemberBinding="{Binding BonusStatus}" Width="75"/>
<GridViewColumn Header="Note" DisplayMemberBinding="{Binding Note}" Width="75"/>
</GridView>
</ListView.View>
</ListView>
</StackPanel>
</ControlTemplate>
<ListView x:Name="lvBonusList" Width="1000">
<ListView.ItemContainerStyle>
<Style TargetType="{x:Type ListViewItem}">
<Setter Property="Template" Value="{StaticResource Default}"/>
<Style.Triggers>
<DataTrigger Binding="{Binding LeaversBonus}" Value="1">
<Setter Property="Template" Value="{StaticResource LeaversBonus}"/>
</DataTrigger>
<DataTrigger Binding="{Binding HistoryShow}" Value="1">
<Setter Property="Template" Value="{StaticResource Default}"/>
<Setter Property="Template" Value="{StaticResource HistoryView}"/>
</DataTrigger>
</Style.Triggers>
</Style>
</ListView.ItemContainerStyle>
<ListView.View>
<GridView x:Name="gvBonusList" ColumnHeaderTemplate="{StaticResource GridViewHeader}" >
<GridViewColumn x:Name="BonusHistory" Width="20" CellTemplate="{StaticResource BonusHistoryGraphic}" >
</GridViewColumn>
<GridViewColumn Header="Name" DisplayMemberBinding="{Binding EmployeeName}" Width="250"/>
<GridViewColumn Header="Emp ID" DisplayMemberBinding="{Binding EmpID}" Width="75"/>
<GridViewColumn Header="Employee Start" DisplayMemberBinding="{Binding EmpStart}" Width="150" />
<GridViewColumn Header="Employee End" DisplayMemberBinding="{Binding EmpEnd}" Width="150"/>
<GridViewColumn Header="Bonus Start" DisplayMemberBinding="{Binding BonusStart}" Width="150"/>
<GridViewColumn Header="Bonus End" DisplayMemberBinding="{Binding BonusEnd}" Width="150"/>
<GridViewColumn Header="Length" DisplayMemberBinding="{Binding Duration}" Width="75"/>
</GridView>
</ListView.View>
</ListView>
</code></pre>
<p>Codebehind</p>
<pre><code>private void PopulateBonusHistory()
{
// populates dtBonusHistory
BonusHistoryGet();
ControlTemplate HistoryView = (ControlTemplate)stkBonusList.Resources["HistoryView"];
StackPanel stkBonusHistory = (StackPanel)HistoryView.LoadContent();
(stkBonusHistory.Children[1]).Visibility = Visibility.Collapsed;
ListView lvBonusHistory = (ListView)stkBonusHistory.Children[1];
lvBonusHistory.View = (GridView)(lvBonusHistory.FindName("gvBonusHistory"));
Binding bind = new Binding();
lvBonusHistory.DataContext = dtBonusHistory;
lvBonusHistory.SetBinding(ListView.ItemsSourceProperty, bind);
}
</code></pre>
http://stackoverflow.com/questions/1783281/databound-listview-in-updatepanel0Databound Listview in UpdatePanelserbrech2009-11-23T14:01:00Z2009-11-23T14:01:00Z
<p>Hello</p>
<p>I am using a Listview in a usercontrol that I databind to a list of object in the page load event.</p>
<pre><code>protected void Page_Load(object sender, EventArgs e)
{
if (IsPostBack) return;
BindListViews();
}
private void BindListViews()
{
MyListView.DataSource = IncludeExpressions;
MyListView.DataBind();
}
</code></pre>
<p>I need to handle inserting new items in the list.
To do that, I added an InsertItemTemplate with a button that has "Insert" as command argument.
I dont want to persist the data to the database until the user press the save button, at the bottom of the form.
So in the ItemCommand event, Here is my code: </p>
<pre><code> protected void Expression_ItemCommand(object sender, ListViewCommandEventArgs e)
{
var listView = (sender as ListView);
var expressions = GetExpressions(listView);
var newExpression = new Expression
{
CaseSensitive = ((CheckBox)e.Item.FindControl("CaseSensitiveCheckBox")).Checked,
SearchText = ((TextBox)e.Item.FindControl("SearchTextTextBox")).Text,
Scope = (Scope)Enum.Parse(typeof(Scope), ((DropDownList)e.Item.FindControl("ScopeDropDownList")).SelectedValue, true),
Type = (Type)Enum.Parse(typeof(Type), ((DropDownList)e.Item.FindControl("TypeDropDownList")).SelectedValue, true),
};
expressions.Add(newExpression);
listView.DataSource = expressions;
listView.DataBind();
UpdatePanelInclude.Update();
}
private List<Expression> GetExpressions(ListView lv)
{
var expressions = new List<Expression>();
foreach (var row in lv.Items)
{
var searchText = ((TextBox)row.FindControl("SearchTextTextBox")).Text;
...
expressions.Add(new Expression
{
CaseSensitive = caseSensitive,
Scope = scope,
Type = type,
SearchText = searchText
});
}
return expressions;
}
</code></pre>
<p>This works perfectly fine until I add an UpdatePanel around the listview.
When I add an updatepanel, the Expression_ItemCommand handler is hit only every 2 clicks, eventhough the page is post back every click.
While debugging, I can see that I do enter the Page_Load event of the page at each click on the Insert button, but it hits the Expression_ItemCommand only every 2 clicks. and reset the content of my listview when the ItemCommand is not hit.
I smell ViewState problems here, but I can't figure out how to fix it.</p>
<p>Here is what the markup looks like :</p>
<p>
</p>
<pre><code><asp:UpdatePanel ID="UpdatePanelInclude" UpdateMode="Conditional" ChildrenAsTriggers="true" runat="server">
<asp:ListView ID="MyListView" OnItemCommand="Expression_ItemCommand" OnItemInserting="ExpressionInserting" OnDataBinding="ListViewDataBinding" InsertItemPosition="LastItem" runat="server" ItemPlaceholderID="itemPlaceHolder">
</code></pre>
<p>
...
...
</p>
<p>Any Idea how to solve this?</p>
<p>Stéphane</p>
http://stackoverflow.com/questions/1782873/asp-net-listview-ajax-update-panel0ASP.Net Listview & AJAX Update PanelAneef2009-11-23T12:30:45Z2009-11-23T12:58:50Z
<p>Guys,</p>
<p>I have to create a listview which contains thumbnails of few items, and when we click on the more button it should display rest of the items in the same listview,. how do i achive this, i dont want to do a postback and i would like to do this with ASP.Net Listview and AJAX Update Panel, </p>
<p>i went through the web and seems ppl are finding difficulties in this, do you have any suggestions or tips in doing this, any help is much appreciated.</p>
http://stackoverflow.com/questions/1779672/android-listview-different-divider-images0Android ListView different divider images.Faisal khan2009-11-22T19:18:50Z2009-11-22T20:01:54Z
<p>In Listview i can change the divider image using "android:divider=image" but i want to display different divider images for different items how can i do that ?</p>
http://stackoverflow.com/questions/1420961/image-navigation1Image navigationnithi2009-09-14T11:20:07Z2009-11-22T16:00:03Z
<p>How to navigate the image using Keyboard arrow keys in C#.</p>
<p>My 1st form contains listView. The listview contains 10 images in thumbnail format. The image are from particular folder. When I double click the image in the list view, it opens in a new window as large image. I want to navigate the image in the new window as per listview order.</p>
<p>If I click the image randomly, want to navigate the image from that selected image.</p>
<p>It's like a Microsoft picture manager.</p>
<p>Plz give me an Idea.</p>
http://stackoverflow.com/questions/1778534/show-icon-only-in-the-column-header-of-a-listview0show icon only in the column header of a ListViewRemus Rigo2009-11-22T12:11:45Z2009-11-22T13:08:37Z
<p>hi all
I want to show a icon (up or down) when i sort a column (asc or desc) of a ListView, so I assingned the SmallImages property to a ImageList (with two icons for up and down). My problem is that when I enter data, the firtst icon in the ImageList is shown in every line of the ListView.</p>
<p>PS
(ListView.ViewStyle:=vsReport)</p>
http://stackoverflow.com/questions/1778600/listview-header-check-box0listview Header check-boxAndy2009-11-22T12:39:18Z2009-11-22T13:03:23Z
<p>Hi ,</p>
<p>I'm having a windows form which contains listview control ,
where <code>listView1.View = View.Details;</code> and <code>listView1.CheckBoxes = true;</code></p>
<p>then added a column with HeaderName as "FileName".</p>
<pre><code>listView1.Columns.Add("File Name", 200, HorizontalAlignment.Left);
</code></pre>
<p>Here I would like to have check box in the Header of listview , ie FileName.</p>
<p>Can anyone help me with this.</p>
<p>Thanks in advance.
andy</p>
http://stackoverflow.com/questions/1778485/android-listview-display-all-available-items-without-scroll-with-static-header1android listview display all available items without scroll with static header.Faisal khan2009-11-22T11:39:57Z2009-11-22T11:39:57Z
<p>I'm having a little difficulties while trying to get a certain layout to work: I want to have list. List does not have to be scrollable, but should be shown completely. But the page itself should be able to scroll (with the lists in it), if the total content ist higher than the screen. </p>
<p>
<blockquote>
</blockquote>
<pre><code> <LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/linear_layout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="#ff181818"
>
<Textview android:id="@+id/my_text" text="header contents goes here" android:layout_width="fill_parent" android:layout_height="wrap_content"/>
</code></pre>
<p></p>
<pre><code> <ListView
android:id="@+id/my_list1"
android:layout_height="wrap_content"
android:layout_width="fill_parent"
/>
</LinearLayout>
</code></pre>
<p> </p>
<p>it only uses a small part of the screen (about 2 lines per list), instead of filling the available height, and the lists themselves can be scrolled. How can I change the layout to always show the whole lists but have the screen be scrollalbe? </p>
http://stackoverflow.com/questions/1777499/is-it-possible-to-launch-an-android-activity-from-an-alertdialog0Is it possible to launch an Android Activity from an AlertDialog?YYY2009-11-22T01:44:39Z2009-11-22T02:43:03Z
<p>I am trying to create a small pop-up in my Android application to let the user choose from one of many items, ala a ListView. I am hoping to make it show up as a translucent box that overlays on the screen, as opposed to completely occupying it like Activities usually do.</p>
<p>One technique for doing this that I've heard is possible is to launch an Activity in an AlertDialog box. This would be perfect - it's the ideal size and has a lot of the mechanical properties I'm looking for, but I'm totally unable to find any more specifics of this technique.</p>
<p>Is this possible? And if not, what is the preferred way of accomplishing something like this?</p>
http://stackoverflow.com/questions/1709166/android-listview-elements-with-multiple-clickable-buttons2Android: ListView elements with multiple clickable buttonsStefan Klumpp2009-11-10T16:17:31Z2009-11-21T19:09:37Z
<p>I've a <code>ListView</code> where every element in the list contains a TextView and two different Buttons. Something like this:</p>
<pre><code>ListView
--------------------
[Text]
[Button 1][Button 2]
--------------------
[Text]
[Button 1][Button 2]
--------------------
... (and so on) ...
</code></pre>
<p>With this code I can create an <code>OnItemClickListener</code> for the whole item:</p>
<pre><code>listView.setOnItemClickListener(new OnItemClickListener() {
@Override
public void onItemClick(AdapterView<?> list, View view, int position, long id) {
Log.i(TAG, "onListItemClick: " + position);
}
}
});
</code></pre>
<p>However, I don't want the whole item to be clickable, but only the two buttons of each list element.</p>
<p>So my question is, how do I implement a onClickListener for these two buttons with the following parameters:</p>
<ul>
<li><code>int button</code> (which button of the element has been clicked)</li>
<li><code>int position</code> (which is the element in the list on which the button click happened)</li>
</ul>
<p><hr></p>
<p><strong>Update:</strong> I found a solution as described in my answer below. Now I can click/tap the button via the touch screen. However, I can't manually select it with the trackball. It always selects the whole list item and from there goes directly to the next list item ignoring the buttons, even though I set <code>.setFocusable(true)</code> and <code>setClickable(true)</code> for the buttons in <code>getView()</code>.</p>
<p>I also added this code to my custom list adapter:</p>
<pre><code>@Override
public boolean areAllItemsEnabled() {
return false;
}
@Override
public boolean isEnabled(int position) {
return false;
}
</code></pre>
<p>This causes that no list item is selectable at all any more. But it didn't help in making the nested buttons selectable.</p>
<p>Anyone an idea?</p>
http://stackoverflow.com/questions/1311424/wpf-listview-still-reserving-space-when-collapsed0WPF ListView still reserving space when collapsedJohnIdol2009-08-21T11:28:41Z2009-11-20T19:39:35Z
<p>I have a WPF ListView within a ScrollViewer.</p>
<p>I need to collapse the ListView and I am trying withthis code (pretty striaghtoforward):</p>
<pre><code>this.myListView.Visibility = Visibility.Collapsed;
</code></pre>
<p>Problem is the ListView seems to be reserving the space even when collapsed - it disappears but the ScrollViewer doesn't accordingly resize.</p>
<p>Anything I am missing?</p>
<p>Any Help appreciated</p>