0
votes
1answer
38 views

How can I show a different listview for each button pressed

I have a row of buttons that I want to populate a listview. That looks like this: Button1 | Button2 | Button3 | Button4 List Item 1 List Item 2 List Item 3 If I press Button1, I will show one ...
-1
votes
0answers
15 views

Outsorce ImageLoader from LazyAdapter

How I can say: Load the Images in a another Class and put it in the ListView? Now I do that so: public View getView(int position, View convertView, ViewGroup parent) { View vi=convertView; ...
-1
votes
2answers
44 views

How do I update the contents of Listview in Android?

I would like to make the search process dynamically in the listview.All entered letters or words to be searched in the listview.According to this letter or word indices listed again.How do I update my ...
0
votes
2answers
43 views

ListView custom adapter - When to call notifyDataSetChanged?

I've been reading lots of questions and answers on Stckoverflow. But still can't find when do I actually use adapter.notifyDataSetChanged. Previously, after adding all items into an ArrayList, I did ...
0
votes
1answer
24 views

ListView pinch-to-zoom possible?

I'm trying to implement pinch-to-zoom on a ListView which contains small pieces of code. However, I can't seem to get it to work. I suspect it may be not possible to implement multitouch zoom on a ...
0
votes
1answer
20 views

Android first row with checkbox and the rest without

I have a listview with 4 rows. I'd like that the first row has a checkbox but the other rows just keep plain clickable rows. Is this possible to do or do I need to create 2 listviews and put them ...
0
votes
3answers
39 views

Make Listview to Occupy Whole Screen

I have listview that i want to fill the whole screen,There are four items in listview. It leaves empty space below after four items are filled.You can see in the screenshot. It leaves the blank space. ...
2
votes
1answer
36 views

List view's getChildCount method does not return an accurate count of the number of visible items

I need to be able to tell which items in a list view are visible. The "visibleItemCount" term in onScroll and the listview.getChildCount both return values that are typically 1-3 higher than they ...
0
votes
0answers
29 views

How to get thats click item's id done onTextChanged listview

I have a problem.. My application gets a XML file datas and write a listview. I used filter android.text.TextWatcher; before I used filter, I get truth items id when I click listview item with this ...
0
votes
1answer
41 views

Making ListView align items correctly

I have a ListView with 10 columns and an header. As you can see in the following picture, the rows are not aligned with the header. If the text in the TextViews was centered it seems like the ...
0
votes
0answers
27 views

ContentResolver$CursorWrapperInner cannot be cast

My app uses a cursorloader to populate sqlite data into a ListView. Actually, the cursorloader should only populate one column (COLUNM_NAME_SITE) from the DB into the listview. The issue I have ...
0
votes
0answers
37 views

get list response from ksoap webservice and show it in listview

I am new for android and working with asp.net webservices.My question is how can I get list response from the ksoap webservice and show it in listview... Plz plz help me Thanks in advance.. Here is my ...
0
votes
7answers
104 views

How to set the visibilty of button in a custom ListView?

I have a custom ListView with a button, so when I click on a button it should disappear and it is disappearing but when I scroll down and come back the button is again appearing and a different button ...
0
votes
4answers
108 views

Android - String Array to ListView

I am new to Android. Please help me. I have two String Arrays as below: String[] Array1 = {"ele1", "ele2", "ele3", "ele4", "ele5", "ele6"}; String[] Array2 = {"obj1", "obj2", "obj3", "obj4", "obj5", ...
0
votes
1answer
43 views

A ListView where a specific row can always be scrolled to the top?

I want to be able to take a ListView and have a specific row be scrollable to the top of that Listview's bounds, even if the row is near the end and normally wouldn't be able to scroll that high in a ...
0
votes
0answers
39 views

setSelectionFromTop sometimes doesn't work

I'm maitaining code for an Android file view app, and after a minor modification, I encountered a very weird situation. This app supports viewing the file system in a ListView, and this ListView is ...
1
vote
1answer
84 views

Get the total count of number of rows in the Custom Listview Android

I am trying to getting the total Count of the getView custom listview. But want to display in the different layout. Here is my onCreatedView. I am not sure how to inflate the layout. Thanks for all ...
1
vote
1answer
163 views

Swipe right display button in android custom list view

I am trying to implement, show the button on swipe right in the custom list view. Problem i am facing right now is, i implemented the onSwipeTouchListener which i found online. I could able to see the ...
0
votes
0answers
101 views

Android-The content of the adapter has changed but ListView did not receive a notification.content adapter is not modified from a background thread

I am getting this Exception when I am Modifying a listview. The content of the adapter has changed but ListView did not receive a notification. Content adapter is not modified from a background ...
0
votes
1answer
27 views

How can I set the background color for a specific row in my TableView

I want to set the the color for a row in my TableView but am having some difficulties. I tried ListView.getChildAt(0).setBackgroudColor() but it says I have no children. I do have 5 items but ...
0
votes
2answers
184 views

Android Listview Item not drawn after setVisibility(View.VISIBLE) is called

I have a list view each row in the list view has height of 450dp for an example so in most cases, the listview will render at MOST 3 items at the time. when list view is initially loaded, each row is ...
0
votes
2answers
44 views

Removing an item from ListView inside a custom adapter

I have a custom listview item that includes a 'remove' button. I created a custom adapter called LazyListAdapter that extends BaseAdapter. Inside the getView method that I override I set this button's ...
0
votes
0answers
56 views

Collapse empty row Listview Android

I'm figuring out how to collapse my ListView. I've a String Array like this: Alice Bob null null null Carl and I need to show a not-null ListView, BUT if I click on Carl I need to know that Carl ...
1
vote
1answer
100 views

Sort listview with content from cursor alphabetically (from database)

I have read some topics here about how to order listviews alphabetically using for example collections.sort or sortOrder but I can't make it work in my case, as I am not using an arraylist. My ...
0
votes
0answers
149 views

ListView selected item background color issue

This is my code. I have a custom Listview whose first row starts a new activity. After launching the app and clicking a row item I get the holo light background color (list_pressed_holo_light IMO). ...
0
votes
4answers
74 views

How to disable ListView item after it has been clicked?

I have a simple array of Strings that I was displaying in a horizontal ListView with an ArrayAdapter. What I'm looking to do is: when the user selects an item from the ListView, make that item not ...
0
votes
0answers
39 views

Show Bottom Buttons Bar in ListView while scrolling up and hide when scrolling down

I have a huge listview, with a Bottom bar with three buttons in them. Now, my question is, Is there a way to hide the bottom bar (With Buttons) while scrolling down, and show them up while scrolling ...
0
votes
1answer
107 views

Listitem click doesn't work with checkboxes Android

EDIT (SOLVED) For the answer go to the bottom of the question. I have a listview and I inflate some rows in it using a customadapter. The row being inflated contains a checkbox. I can maintain the ...
0
votes
0answers
73 views

why does my ListView-item background color change

my application looks like this: ListView1 with N items(rows) as main menu --> ListView2 as sub menu for every N-item in ListView1. I m using the holo light theme and the Sherlock Action Bar ...
0
votes
2answers
159 views

listview item is not added on button click

I have an issue with adapter adding data to listview on button click. I have a activity called createteam that has name and email edittext and a createplayer button. On click createplayer button, ...
2
votes
1answer
205 views

Double Tap to Top

I have seen this new feature in my Samsung Galaxy S3 called Double Tap to Top where on scrolling to the bottom of the listView the user needs not scroll back to top he just needs to Double tap on top ...
0
votes
1answer
106 views

ListView Crashes App on scrolling Using ViewHolder

My app crashes when i scroll up and down for a couple times in a ListView which is feed by a customAdapter which extends a baseAdapter. there is also a problem that when i scroll up and down that ...
0
votes
1answer
65 views

Pass value of image List view to another activity

Integer[] leftItems = new Integer[]{R.drawable.ic_1, R.drawable.ic_2, R.drawable.ic_3, R.drawable.ic_4, R.drawable.ic_5}; Integer[] rightItems = new Integer[]{R.drawable.ic_6, ...
1
vote
2answers
104 views

Custom ListView with different size item Android

I have a ListView that can takes 2 different type of objects : Food and SectionItem. I have this : I would like to know if it's possible to make a Layout padding/margin difference between the ...
0
votes
0answers
32 views

Motorola Droid X, Android 2.3.3 list view row divider

I am new to android development and I have a list view that I have used to display images. Each row is a custom row and each cell is also a custom layout. Everything works fine, but as soon as I ...
1
vote
1answer
57 views

How to implement the below scenario to show the POPUP dialog based on Time and also append to Listview

Here is my code i implemented to show the popup dialog public class ExPopup extends Activity { Dialog myDialog; Button myButton; @Override public void onCreate(Bundle savedInstanceState) { ...
0
votes
1answer
55 views

A LinearLayout and a ListView be in one view?

Example: Main LinearLayout |Sub LinearLayout|ListView | ListView has a set of names, which change the sub linear layout's content. Now I have the sub LL in my main LL. How do I add the ...
0
votes
4answers
138 views

Footer below list view fixed at the bottom of the screen

I was trying to have a footer below my listview. This is how m doing. <?xml version="1.0" encoding="utf-8"?> <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" ...
1
vote
1answer
319 views

Android: ListView in Fragment Layout

I am trying to add a ListView onto a Fragment, not just a ListFragment. I want the tabs on top than in the Fragment a ListView. My code compiles fine but crashes when I launch it. Here is the ...
-2
votes
2answers
320 views

Android: Listview Item with Radio Button? [closed]

I have a listview and a associated row view(xml) for it, There are 5 questions in the list and and each question has 4 options. So the row view xml has defined text view (for question) and 4 unique ...
0
votes
2answers
171 views

Listview Adapter with SQLite Query's

I have a quick performance question; I have a ListView adapter which populates the listview and I open my sqlite database and close it at the end of populating the view and I populate some information ...
0
votes
1answer
74 views

Headers do not stay in ListFragment after orientation change

I'm building a ListFragment. In portrait it needs two headers, but in landscape I need these headers on the left side with the ListView on the right side. The xml handles the different layouts and the ...
0
votes
0answers
123 views

Sending information from a varying listview (content from database) to another activity

In my application, I have a listview displaying content from a database. To do so, I have a method sending a request to my database, the results are put in a cursor and then displayed in my listview. ...
0
votes
1answer
73 views

Should I extend ListActivity ? (already working well without it so far)

I am working on an app whose purpose is to display a listview with some content from a database. So I have an activity called ResultListViewActivity (extending something else than ListActivity!), in ...
0
votes
2answers
42 views

android ListActivity Button

I have an Android development problem that seems to be beyond my current skill level. The problem is as follows: I have a SQLite database and a content provider. Briefly stated, upon clicking a ...
2
votes
1answer
59 views

ListView with onItemClick postion

I got an App with ListView and on any row you click it's popup something diffrent.(With PauseDialog). And the headers in any row is in a "array.xml" and the text that will popup in the PauseDialog is ...
0
votes
1answer
125 views

Android ListView. Vertical scrollbar isn't visible always for wide list

I have ListView which is wider than parent view. To have horizontal scrolling I've wrapped it with HorizontalScrollView. Simplified layout XML: <HorizontalScrollView ...
0
votes
2answers
57 views

andoid customview

i have a list obtained after parsing the webservice response. i have created one customview using baseadapter. the problem i am facing is "i am not able to bind the data to the listview" using the ...
0
votes
2answers
93 views

Android: I want to swipe between cells of a grid where only one cell is visible at a time

I want a single cell of a grid to take up my whole screen and swipe up/down/left/right to access other cells (not smoothly, but switch to the next cell). What do you think is a good way of ...
1
vote
1answer
67 views

Updating a listview inside a fragment

Within my ListFragment I have this: private SelectedItemListAdapter selectedItemListAdapter; public void initSelectedItemListAdapter(CellItem[] itemList) { selectedItemListAdapter = new ...

1 2 3 4 5 8