listview

Checkbox In Listview + vb.net

Can anyone help me on how to do this.. I have a ListView with Checkboxes in vb.net and what I want to do is when the user check the checkbox, the program ignore the response of the user in checking the checkbox, instead it leaves the checkbox uncheck.. This concern is uses for may validation.. Thanks for your positive response regardi...

Is there a super simple List / ListAdapter example out there for android

I have a web service that returns a super simple list of objects MyObject[] data = webServiceCall(); MyObject has 1 field i want to display, "Name" (i.e. data[0].Name ) How can i turn this into an activity that lists just the name of these objects in a scrollable listActivity in android. I am getting really confused with Cursors an...

ListView images just not showing up. Why (Drooping my head in shame that I have to ask)

I am trying to display images in a WinForms ListView that is in details view mode, but images are just not showing up. I have added a SmallImageList (and a large one for good measure, added images to them, added my items to the ListView, but when I set the ImageIndex nothing happens. Images do not show up. I have also tried using the Im...

Layout not displayed properly while dynamically loading a listview in Android?

Hi, <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/listViewShow" android:layout_width="fill_parent" android:layout_height="?android:attr/listPreferredItemHeight" android:background="@drawable/brown_bg" android:padding = "3dip"> ...

Get selected item in ListView win32 API

I try to create list view item like explorer . I want to get the selected item when I double click on it . So I can use it to get the path and find file to display . I can do it in treeview by senddlgmessage. But it looks like it doesn't work on listview . ...

How do I link one listview to another to create a football league table?

Hi I am creating a football system in windows forms c#. I have one listview where data is entered. I have 4 columns, 2 with team names linked to combo boxes and 2 with the scores linked to numericupdown controls. There are 3 buttons to add the results, Remove and clear. the code is below: private void addButton_Click(object sender, ...

Cannot display image correctly using custom item layout in ListView

Hi I am using a ListView to display my custom item layout, which may contain some TextViews and an ImageView. This is the item layout I made (post_item.xml): <?xml version="1.0" encoding="utf-8"?> <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" android:layout_heig...

In JavaFX, how can I bind two listview's so their selectedIndex is always the same?

I have two (or more) ListView's that are side by side. I need them to act as one so the selected index of each is always the same. Thanks! Andrew Davis NASA - Kennedy Space Center Kettering University Co-op ...

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 in the explorer listview don't have that border around them. How can I remove it? Windows Explorer: ...

how to template a listview item / wpf

I am trying to achieve this using Expression Blend 3. I need that every listview item to contain an image, followed by a text. ItemTemplate doesn't seem to work. Thanks ...

Get the path of selected item in ListView - Win32 API

I find a way to get ListView's selected item full path. I do it in treeview by using this: temp = (HTREEITEM)SendDlgItemMessage(hWnd,ID_TREE,TVM_GETNEXTITEM,TVGN_PARENT,(LPARAM)temp); But I don't find familiar method in listview controls. THanks for reading this and I w8 for your answers :) ...

WinForms: Control ListView checkbox painting

It seems that the checkbox used in a ListView when CheckBoxes = true isn't a proper checkbox. It doesn't draw the MouseOver or MouseDown state and it doesn't support the Indeterminate/Intermediate state. How can I replace the checkbox with a standard checkbox control or take control of the drawing of just the checkbox so I can use the ...

[Java/Android] Multidimensional array to ListView.. how?

I have a query result set which I like to edit first and then put it to my ListView. Without editing my data first, I could use SimpleCursorAdapter like that: ListAdapter adapter = new SimpleCursorAdapter( this, R.layout.list_item, mCursor, new String[] { "address", "city" }, new int[] { R.id.address, R.id.zip_ci...

passing table id

Hi In Android, I make a list view that describe the name fields from a table in SQLite. Clicking long-term on any List Item, context menu appears and then I wanna get the ID of that item (I mean in the table, there are ID and name fields) and pass this ID to next layout. Why I wanna pass this ID is to update this record in SQLite table....

How to add CheckBox to any ListView item in android?

Hi everybody, I'm writing an app with ListView layout and i want to add to any line in this ListView CheckBox. How can i do this? This is my XML file: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="wrap_content" android:layout_h...

Dynamically extend the height of the ListView row background image in android?

Hi, I am loading a listview dynamically. I have set a .9.png image as row background image. The main purpose of using .9.png image was to extend the height of the image dynamically according to the contents of the listview. But, the image is not getting extended. The contents which can be displayed within the height of the row are bein...

android select multiple items in ListView?

Hi, I have a ListView and I want to select multiple items in the ListView without using CheckedTextView. Please help !! ...

Android ListView

Hi, anyone know how to do a listview which looks like this? I'm interesting in the style of rows with an own background and the selector working fine. ...

Set PageIndex of DataPager

I have a ListView that I am paging with a DataPager. I would like to set the initial page of the pager on Page_Load. I have tried the DataPager.SetPageProperties method but it's not doing what I need. Here's how I'm calling this method: dataPager.SetPageProperties(3, dataPager.TotalRowCount, false); The line above trims the datasou...

Access a custom ListView item

Hello, l'm new here so hope to follow guidelines as I'm a newbie for both the side and android. For my first app I'm trying to make a world clock. In order to check it the time is shown and update in seconds. (00:00:00) As the only thing I want to update every second is the time I don't want to use: ListView's notfiyDataHasChanged() I ...