A ListView is a graphical screen control or widget provided by UI libraries in majority of modern operating systems.

learn more… | top users | synonyms

0
votes
0answers
10 views

Update ListView with adapter (notifyDataSetChanged) - Performance

I want to update a list if the number picker changes. My problem is, that if i scroll the number picker it looks a bit irregular and not smooth... Therefore I use the following solution in the moment: ...
0
votes
2answers
21 views

Android Listview display multiple items per screen

I've created a simple app that sends a search term to a php script, reads the json response generated by that php script based on the search term, processes the json response and loads the json nodes ...
-5
votes
0answers
19 views

Android listview and spinner how to do?

im doing an APP for Android with a list of Series of TV and who there's a Listview.When i click for example in "How i meet your mother" the item goes to an other Activity who see the Synopsis and a ...
0
votes
0answers
10 views

How do I remove the default Mouseover/Selcted Item highlight style on a listBox/ListView when using a DataTemplate as my ItemStyle?

When using a Listbox I normally use an ItemContainerStyle for the style of my items. I could then change my default mouseover highlight style no problem. With a DataTemplate as my Item style I cannot ...
0
votes
1answer
20 views

Fit Columns to Listview width

I want the columns of listview to fill all the listview. How do I do it ? <ListView Grid.Row="0" ItemsSource="{Binding }"> <ListView.View> ...
0
votes
4answers
37 views

Add a button in bottom of listview when the listview is empty (using ListActivity)

I using extends ListActivity to show the empty message when the list are empty. Below is my xml file: <?xml version="1.0" encoding="utf-8"?> <LinearLayout ...
-1
votes
0answers
11 views

How load data from sqlite database to ListView?

Im trying load data from SQLite data base to ListView. But shows error. Which way i can load?
-8
votes
1answer
38 views

How to put an item of a ListView on the top of the screen [closed]

I have a simple activity with a ListView. In this ListView I put only one item but when I execute the activity in the emulator the item is in the centre of the screen. How can I put it at the top of ...
1
vote
2answers
26 views

Android : How to identify button click in a Listview having more than one button

My custom Listview has more than one button, how can I identify which button has been clicked ? I want to do different things on action of different buttons.
0
votes
0answers
22 views

Header of AmazingListView not getting touch events

I am adding a header to an AmazingListView (using the latest code): mAmazingListView.setPinnedHeaderView(headerView); headerView contains elements that a user should be able to interact with ...
1
vote
3answers
40 views

JSON to ListView in Android with Gson

I'm trying to put a json result in a ListView in my Android app. This is my Json: [ { "Result": "8:30,21", "Meeting": "Antwerp Olympics", "Event": "3000m", ...
0
votes
1answer
43 views

Listview go to main when i click in item

I have an app that has a ListView and when I click on some item, it adds the item in an array. But when I click on some item I don't want change the view, then in Android 4.0 the ListViewgoing to ...
0
votes
0answers
3 views

how to get the listview subitem text from a form created in another thread in vb.net

In a visual studio 2012 vb.net solution I made a Windows application with two forms. With code in Form1 I try to get the value of a listview subitem on Form2 and compare it to what was saved in a ...
1
vote
2answers
33 views

On a ListView item's child click

I have a ListView where each of its items is composed from some ImageViews and TextViews, i want that when i click on a specefic ImageView, some code will be executed, where should i put this code is ...
0
votes
1answer
22 views

Change an icon in an Android ListView entry when pressed

I am currently trying to implement a ListView in Android that features rows with an icon and a describing text. When the user presses a row, the background color should change and the icon should be ...
0
votes
1answer
10 views

use 1 view for many pictures

i have an listview with 1 pic in every row. after clicking on such a childrow i wanna get detailed information of the childrow entry. for that i want to have a new intent which has an imageView that ...
0
votes
2answers
58 views

How do i detect new columns added to a list-view control?

I am writing a component that descends from TListView, and I want to know when the developer using this component adds a column so I can react. How can I detect when a new column is added? Is there an ...
1
vote
1answer
25 views

jquery mobile listview is not displaying for the dynamic content for second time

I have a ul-li list(say parent list), on clicking of each li from the parent i am creating one more ul-li list(say child list) dynamically. problem is, JQM's listview template for child list is ...
0
votes
1answer
26 views

Enable scrolling on disabled listview in vb.net

when i disable a listview in vb.net by setting Enabled=False, the scrolling is disabled too so i can't see all the items in the list. Is there a way to disable user interaction on the list but ...
0
votes
1answer
18 views

Set ImageView on a ListView with ViewBinder depending on RatingBar value

I have in my MainActivity a ListView which shows a list of movies that i'm populating with a SimpleCursorAdapter. In another activity the user is able to set the rating with a RatingBar and the float ...
0
votes
1answer
19 views

How to Search iteams in alphabetically in Listview through Base Adapter

I want to search iteams from list view alphabetically on click on edittext i am not getting how to do this serch_item.addTextChangedListener(new TextWatcher() { @Override ...
0
votes
2answers
37 views

How to pass exactly selected listview row text in android?

I have a ListView which manipulates 10 row. Each row has two TextView. If I select a row, I want to know the current TextView text. I know that getView() method call multiple times. For this reason I ...
0
votes
1answer
21 views

Android listview with inflated checkboxes not checking all true at once

I am retrieving contacts and displayed it in listview using simpleCursorAdapter. listView is displayed in main.xml and my textview and checkboxes are in listview.xml. My main.xml also have 2 buttons, ...
0
votes
0answers
17 views

Updating ListView to strikethough item on click

I am using a CursorAdapter with a ListView and a cursor getting data from an sqlite database. I have this function called RenderList() which I call every time I update the database with a new item for ...
0
votes
1answer
26 views

Saving the checked list item continuously when after coming back to the activity and select

Hi I am new to the android & doing some simple examples. Exactly, i'm using two activities & it contains a list view on both. In that first list view (Activity1) is empty, the second list ...
0
votes
2answers
39 views

How to implement pagination in Android listview

I am working for Android app, in which I need to show listview with items. But There are more elements to show in listview. I decided to implement pagination . I tried searching in Google but does ...
0
votes
1answer
39 views

Share selected text in listView item

I have a ListView with text items. How do I make Share (in the charms bar) available when a given item is selected, and then pass that selected item into the Share contract? I know how to share, but ...
0
votes
0answers
15 views

asp.net nested listview databinding order

I'm having some trouble with nested listviews. I have a listview in which each row of the listview has its own nested listview. The binding on these is all working perfectly, however, there is ...
0
votes
2answers
37 views

how to change a listview item font color

Is there a simple way to change the font color of a specific listview item? I have an ArrayAdapter item that I pass to setAdapter() in ListView. I just want to change the color of a specific element ...
0
votes
0answers
48 views

Android DrawerLayout background selection on ListView

I've developped an app with a DrawerLayout. My problem is with the ListView, when I click on an item his textColor becomes white, but background still transparent and the ListView background is white. ...
1
vote
1answer
48 views

How to Autocomplete textview in android and search data add in listview in android?

i developing autocomplete textview and i used search from webservice used .but my problem is autocomplete textview set listview but i coudn't see listview updated.how to possible.my code below>please ...
0
votes
1answer
59 views

Delphi - Format Filename from FTP

okay, I've the following problem: I like to get a list of all .txt files on my FTP Server in a special folder. I solved this already. if IdFTP1.DirectoryListing.Count>0 then for i := 2 ...
0
votes
0answers
40 views

problems refreshing android listview

I'm currently working on an Android app with two tabbed-fragments. One fragment consists of a pre-populated list in a listview. The other contains a dynamic list to be displayed in a listview. I ...
3
votes
2answers
67 views

How to create ListView from an Object with multiple arrays

I am lost again. My object is as follows: public class LogInfo implements Serializable{ public ArrayList<Point[][]> strokes; public LinkedList<byte[]> codes; public int[] times; ... } ...
-2
votes
2answers
38 views

NullPointerException inside AbsListView

I have an amazing exception in ListView outside of my appication. I've read that it can be caused by mine adapter, that returns null. But my adapter checks for it: public View getView(int ...
0
votes
4answers
37 views

how to cache the image for a android list view [closed]

I am developing an application which has a list view with image. I planned to use lrucache to cache the image.Before implementing i just want to know is there any efficient way to do this(The list ...
0
votes
1answer
38 views

Load selected fields from ArrayList to ListView.

I would like to load only selected fields from my ArrayList to ListView. I couldn't find that example so I ask. I have an ArrayList of a structure as follows: ArrayList<LogInfo> logInfoArray ...
0
votes
0answers
49 views

TStylebook iOS Delphi XE4

Does anyone know if the TStylebook component will allow a user to change the look of the listview... (Not just an item title and detail). It works on a windows app which is fine, but i would like to ...
0
votes
0answers
11 views

List View Insertion

I am using list view for insertion in a table. <InsertItemTemplate> <tr style=""> <td><asp:Button ID="IBtn" runat="server" OnClick="InsertUpdateRecord" ...
0
votes
1answer
18 views

ListView id not valid

i've got a problem with an activity with root element ListView. I've followed this tutorial to load items into listview and all work. But i've tried to change the id of the listview and now, when the ...
0
votes
1answer
27 views

why disabled item is still checkable in listview

I want a listView with some items and all of them could be checked. But if the first item is not checked then the other item is not enabled, of course, they should not be checkable at the time. So I ...
0
votes
0answers
54 views

I have a list view, and I need it do display multilines with image, anyone knows how?

I'm using Delphi XE3 and I have this code that displays a nice list view which I was looking for a long time, but I want to make each item in the list (sub items) each has a multiline and an image, ...
1
vote
1answer
35 views

ListView items don't load on screen

The use case is the following: I want to load a ListView inside a ViewPager and at the same time set a OnItemClickListener on the list. Can someone tell why is that the ListView doesn't load, i.e. ...
1
vote
0answers
35 views

Android on Long Click is not working properly - custom list

my custom listview is not working properly. it works fine till i didnt scroll to the end, but as i scroll to end its onclick feature stop working, i m using custom list extending base adapter.. i ...
0
votes
0answers
17 views

Sectioned ListView - fc on scrolling

Im trying to make a list view that has sections. Im using custom adapter List gets populated fine but as soon as i try to scroll it crashes (NullPointerException) Here is the Adapter public final ...
0
votes
0answers
11 views

How to achieve submenu in asp.net list view control?

How to achieve the below html code using asp.net.The pages such as Home.aspx,AddUser.aspx etc are taken from the database. Any help would be appreciated? <ul id="jsddm"> ...
0
votes
4answers
40 views

How to get data and View from a ListView

Hi everyone: I hope someone can help me here,The Cursor generated by a Query populate the ListView with the Layout defined by simple_list_item_2. To create the Intent i need the first string of the ...
0
votes
1answer
16 views

How to list all files with a specific extension fast and efficiently from a SD card in android?

I am trying to build an android app which lists all the files from the SD card that contain a specific extension. For e.g: pdf,mp3,txt etc. I have tried using the android MediaStore class' ...
0
votes
0answers
30 views

ListView in an activity with scrollable tabs

i'm doing an application which has an activity with "Scrollable tabs + swipe" navigation mode. I want to put a ListView in this activity that change for every tab. Can I do that, or there are some ...
0
votes
1answer
24 views

List View Box, Double clicking to a text box

I have a form with a list view box that contains two columns of data, and the same form I have two columns of text boxes. I would like to make it so that if I double click a row of listview it will ...

1 2 3 4 5 282