listview

How to display a "Loading..." text while retrieving items for a ListView

There are some others applications doing this, like Twitter, Facebook, or even native applications such as Android Market. When you want to display a list of items retrieved from the internet, this looks like a standard way for displaying the user some notification about action in progress. This is a white background screen with an anima...

C# Listview Drag and Drop Rows

Hi, I'm trying to implement a C# drag and drop row-reorder with a listview which would then update an SQL database with the current order of the rows. I've come across some snippets of code on the internet (one from this website which implemented a 'var' class) but none seem to be working with my needs. I don't need help updating the...

Highlight of ListView items without setting the focus

In my situation there is a textbox that I am typing in it and then there is a listView that jumps to the item I am typing in the text box so the FOCUS should always be in the text box so I can continue typing! But as I said when it is selecting the item in the ListView I want that item to be highlighted with BLUE background as other sta...

WPF: selected ListView items after showing a dialog window

I have an action Edit in my WPF application, which is bound to items in a ListView control, i.e. it is executed when an item is double clicked or the Edit button in the toolbar is clicked. This action in turn displays a modal window with the editing stuff. Now when I select multiple items in the list, click Edit, the items stay selecte...

Using progress bar ends up in not populating list view

I am using a progress bar in android, so that till my data is loaded, user is getting a proper feedback of what is going on. the code for the bar is below: final ProgressDialog myProgressDialog; myProgressDialog = ProgressDialog.show(ListingPage.this,"Please Wait", "Loading Date", true); new Thread() { public void run() { try{...

Dynamic display of ListView elements partially working.

I am making a time sheet program where a user inputs his in- and out-punches. I have a ListView that I am populating from an array of calendar objects. I would like each row to show the day and date then on a new line the time, but I only want to display the day and date if it is different from the previous element. Currently, I am sett...

When removing an item from a ListView, how do I highlight the item that relaces it in VB.NET?

I have a ListView in my project that has dynamically added/edited/deleted items. When the user deletes an item, I want the item that replaces the deleted item to be highlighted. I tried simply storing the deleted item's index then highlighting the item there (list.Items(index).Selected = True). This works well unless the item deleted was...

Navigating Two (or More) ListView's Next to Each Other

Hi. I'm working on an Android app that requires the use of two (or more) ListView's positioned next to each other. I am at the moment using Android 1.6 and running in an emulator. I was able to successfully implement the basics with two ListView's as shown in the first image: However I need some help in the navigation (with the direct...

How to create ListView disabled item labels for sections of list items?

I have a customized Cursor based adapter for my ListView. Each Cursor has a few columns of data, sorted by the priority column. I know you can create a disabled list item to act as a sort of header, like in the Market app (the little green labels). What I would like to do is display a header for each group of items with a different pr...

How to configure ListView to automatically change its height?

I have three ListView widgets in the same LinearLayout. Something like this (I'm omitting XML elements that are not relevant in this example): <LinearLayout> <ListView android:layout_width="fill_parent" android:layout_height="360dp"/> <ListView android:layout_width="fill_parent" android:layout_height="360...

How to change the header background of a listview?

I want to change the gray default background of the header of a listview but I don't know how to do it. Please help! To clarify my needs, I put a screenshot here. ...

Android: is it possible to configure ListView of ListActivity via xml

Hello everybody Actualy the question in subject... How to configure ListView of ListActivity via xml, for example padding, dividerHeight etc... ...

Android: IllegalStateException - When is it thrown?

In my application, sometimes the following exception is thrown: 07-28 14:49:25.398: ERROR/AndroidRuntime(8097): java.lang.IllegalStateException: The content of the adapter has changed but ListView did not receive a notification. Make sure the content of your adapter is not modified from a background thread, but only from the UI thread. ...

EditText wont display above ListView

Hi, I have a ListView activity and I want an EditText (and ultimately a button along with it) to display above it. I believe my xml is fine, but for some reason the EditText is not displaying. The ListView takes up the entire screen :( Here's what my XML looks like: <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android=...

Android: Tweetie Style List Refresh

I've come from iPhone background and am writing an android app. I've got a list which is cached locally, but primary is stored on the our webserver as the app is an interface to our service. What I really want is a simple way for the user to refresh the list. So I'm trying to replicate the tweetie pulldown to refresh list. Does anybod...

Using inputType on a TextView in a list item layout

Hi, I've made a ListActivity. I have an xml file that defines the layout for this Activity. I also have an xml file that defines the layout for an item in that list. This item layout has 3 TextViews inside of it. If I add the inputType="text" property to one of these TextViews, the onListItemClick handler no longer executes when I r...

How to create a list that can be expanded in Android

Hi All, I wanted to develop a list view which should initially show only one element and on some user action, it should expand to show all the items present in the list. Is there any widget that is available in Android that can do this? If there is none, give me ideas as to how to do it. Also any sample application that has this feature...

Should I use a ListView, DetailsView, or GridView?

I need to display a table with various info (names, dates, serial numbers, notes). In addition, there is one field I need to be one of three specified values (Raise, Lower, Release). What view would be the best/easiest to implement which would let me add/edit/delete entries as well as provide a drop down option for the Raise, Lower, Rele...

C#: Prevent ListViewItem Image to be rendered selected

Hello, I was wondering whether it would be possible to have a ListView, in which items can be selected as usual with one difference. When a ListViewItem is selected, I would like to see the selection in the text label, however I would prefer the image to remain the same. The reason for this is, that currently the blue selection drawn o...

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 = new int[] { R.id.text1 }; SimpleCursorAdapter notes = new SimpleCursorAdapter(this, R.layout.notes_row, c, from, to); This code seems to w...