0
votes
1answer
38 views

getItem(position) returns same object for different values of position

I have a adapter with the following piece of (test) code in public View getView(int position, View convertView, ViewGroup parent): Cursor itemCursor = (Cursor) getItem(position); Cursor ...
0
votes
1answer
17 views

Why is my CustomAdapter not being used?

I created a class called FTPSite with getters and setters for name,address,username,password,port,passive mode. I'm trying to create site manager by using a custom adapter to show the site names ...
0
votes
4answers
68 views

data will not populate listview

I'm having issues populating my listview. I thought I had modifed my XML and adapters accordingly but apparently not. When the activity is loaded the dialog pops up stating it's loading then the app ...
0
votes
1answer
53 views

Lazy Loading (Image + Text) for Linear Layouts

I am trying to implement an activity shown in the image(Wireframe) uploaded(). There could be n number of such items.(Lazy Loading is expected to be implemented.) Images are ImageButtons and ...
0
votes
3answers
71 views

What is the best way to refresh a android's listview?

I want to refresh the listView after an insert or delete it in the database. I've searched and I found notifyDataSetChanged(), but I don't know how to use it. I used AsyncTask to get the data from ...
0
votes
1answer
24 views

Android Eclipse ListView

I have a custom Adapter & a ListView & I'm trying to add the items to it dynamically, not dynamically each item hard coded, I need the items to be added using a for loop or the sort. Here's ...
0
votes
1answer
64 views

Android App - trouble setting AlertDialog view with custom ListView

I am trying to use the following code to put a ListView with a custom ListAdapter into an AlertDialog. Currently the activity will display the AlertDialog, but with no ListView displayed: public ...
0
votes
1answer
37 views

List view is not populating with database when first time activity start

I am using SQlite Database.I create 2 tables and populate them(working fine) and use there data to show in list view. when first time list adapter is populating list view show newDATA varibale as ...
0
votes
2answers
97 views

How can I update the listview content each time on a button click?

I need to update my ListView content (which is retrieved from a database) each time when a button is clicked. I am trying to include a book search functionality in my android application. For that I ...
0
votes
0answers
62 views

setAdapter Custom ListView in wizard generated swipe tab on ICS/JB

I am trying to extend the wizard generated swipe-tab app with a custom list view showing two lines per list item. In the associated layout XML file I added a ListView with name "section_list". I can ...
0
votes
1answer
54 views

A way to merge adapter with data fetch from different resources

I have a CursorAdapter for some data fetched from a database and another set of data fetched from a WebService , Is there a way to use one adapter (so i can set it for a single ListView) for both of ...
2
votes
2answers
55 views

How to fetch Selected value from the RadioGroup in the Customized Listview

In My application, i'm developing an application Student Ranking system. Here, is the link which i asked earlier. Now my requirement have filled but i couldn't access the data in it.. public class ...
0
votes
2answers
71 views

Custom ListView + getView method

I need help with custom adapter with getView() method. When adapter create a list in getView() method called every time rendering like holder.textEpisode.setTextColor() etc. This gives heavy load and ...
-1
votes
2answers
47 views

layout element wouldn't be recognized

I'm using the following code to display a list view from the database ;However, it seems some of the layout element is not recognized .. Could any one tell me why ? this is the Logcat message: your ...
0
votes
1answer
45 views

remove row from another activity

I have a listview which is inflated by custom array adapter and onclick takes it to another activity with the data related to that row .After clicking on delete its supposed to delete the item from ...
2
votes
2answers
81 views

Button/View still showing in ListView after setting it's visibility to View.Gone (Solved)

I have a ListView which displays different items to be purchased. If user selects an item, then I set "Buy" and "Add" buttons as visible. When user clicks any other item then Visibility of previously ...
0
votes
0answers
108 views

How to refresh items in ListFragment when scrolling?

I have a FragmentActivity, which loads several fragments. One of that fragments is that class. The fragment has a ListView, so it's a ListFragment. This is the code of my class: import ...
0
votes
0answers
71 views

Re-populate ListView Items in Reverse when Removing an Item

When a ListView's item is removed, the default behavior is such that the space generated from the removed item is filled in with the item immediately below it. Subsequently, all items are propagated ...
0
votes
1answer
58 views

How to set the ListView height

I want to know how to set ListView's height through calculating the item view, someone says in this way. ListAdapter listAdapter = listView.getAdapter(); if (listAdapter == null) { return; } ...
1
vote
1answer
153 views

ListView with Items from REST service

Suppose I want to show items in a ListView. The datasource is a REST API, let's say www.example.com/getItems?ps=10cp=1 where ps = pagesize and cp = currentpage. The answer gives count = xy, amount of ...
0
votes
1answer
117 views

Making Array of Objects for ListView using ListFragment

I seem to be having troubles implementing a list of objects into a simple ListView. Here is my object class for each of the list elements. package com.example.android.fragments; package ...
0
votes
1answer
95 views

Link not open in web browser

I have made ListView adapter and implement unique URL in each row with same button id made in XML, now whenever I try to click on button it shows me Force Close . P.S : I am Newbie public class ...
0
votes
2answers
142 views

Dynamic change on listview row layout affects other rows too

I am using ListView and there are several buttons on each list element. when a button on a row is clicked that button should disappear. the clicked button disappears when clicked that's ok. the ...
0
votes
2answers
304 views

Android ListView LazyAdapter for Fragment

I extends my App for Tablet-Design and use Fragments. The MainActivity: public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { ...
0
votes
2answers
224 views

Getting more XML-layouts in Listview

I want to fill one single listview with different XML templates on different rows. I lost a tutorial and now I'm stuck. I get the same template for all the rows. So what I did, is, I created an ...
0
votes
1answer
140 views

Make a TextView visible in a ListView row only on one line via adapter

I wanna highlight only one row at the time, I'am doing this by making a TextView visible (or use the BadgeView library, which I used in my first try but produced this bug and I thought it was a flaw / ...
1
vote
1answer
484 views

Custom Listview is not responding to the click event

As you would guess everything loads fine, no click event get triggered. Before I start I have read so many thread about this however I for the life of me I cant figure it out. Here is the code. ...
1
vote
1answer
361 views

Change layout of listview item onclick

I have a ListView with custom adaptor that I molded off the example shown here. I want to take the user's selection and inflate a different layout for that selection. So that I can expand the view to ...
-1
votes
2answers
271 views

How to implement a “main menu” ListView?

I have an activity that displays a list of "main menu" items. Each list item should start a new activity when clicked. I do this by loading the appropriate activity using it's class name. Code: ...
0
votes
2answers
244 views

Calling notifydatasetchange for one adapter from another adapter

In my activity I have two listviews and so I am using two different adapters. My requirement is in both the list item I have a button. On clicking the button in any of the listview, the data in both ...
0
votes
1answer
233 views

Using Listview and Sqlite

I have downloaded an example of SQLite from the following link http://www.codegod.com/Android-ListView-with-dynamic-Images-AID590.aspx SQLiteListActivity.java: package com.codegod.android; import ...
0
votes
2answers
141 views

getView() not working properly

Look at the code :- @Override public View getView(int position, View convertView, ViewGroup parent) { View row = convertView; if (row == null) { LayoutInflater inflater = ...
0
votes
2answers
373 views

Need helping passing variables from listview item to another activity

I need some type of explanation as to how I can pass any database column value I want from the database for a listview item. I would like to be able to grab any value, and pass it through to another ...
0
votes
0answers
64 views

Long image list in forms application

I am trying to populate a large horizontal list with small images. There may be thousands of these images that need to be scrolled through. I want to avoid pagination as the non-fluid motion can make ...
0
votes
1answer
67 views

ListView adapter and ArrayAdapter

first I am a programming noob and I wanted to do something like taking the user when he/she select Clear_data and it will take the person to Clear_data activity. I am running in to a problem with ...
5
votes
2answers
300 views

Why does getCount in adapter is being called so many times?

I have a custom list and it takes few minutes to show-up. When I was trying to check where the problem is, I saw that even when I have only 1 item in the list, the method getCount() is being called 5 ...
0
votes
2answers
114 views

How to make a custom list adapter with textbox and imageview from web?

I'm using a parameterized Uri link that I ran through AsyncTask to acquire(GET) some info whenever the user gives some info in a TextBox and hits the Button to start the task. I get the response and ...
2
votes
0answers
144 views

Jeff Sharkey Listview

I'm relatively new to Android and Java so forgive me if this is a stupid question. I'm using Jeff Sharkeys SeperatedListAdapter and I'd like to create a list like below, where it goes HEAD ...
0
votes
1answer
227 views

BaseAdapter not populating listview

So i have a base adapter class that I built. I also try to use this in one of my activities. I have a xml for the parent layout and an xml for the rows to inflate. However, these components are not ...
0
votes
0answers
77 views

using string value to check listview items

I want to use an array to pre select check boxes from a ListView. This is what I have so far but I'm not sure what I need to do to split the array and use those values to select a position to check. ...
1
vote
0answers
73 views

Listview to show exactly two cells of list

i want to create a list view inflating custom cell. The cell size may vary depending on the size of text in it. There can be n number of cells. At a time, i just want to show exactly two cells in the ...
0
votes
2answers
91 views

Can't get custom ListAdapter to work

I have followed various "how to" examples to the letter (or so I thought), but I still can't get my custom ListAdapter to work. I have a dialog with a list view containing strings which are references ...
0
votes
1answer
150 views

How to check if EmptyView of my ListView is shown in Android?

I am using a ListView and I show an EmptyView if the list is empty. How can I check if this View is shown with a boolean variable? Here the code for my ListView: deviceList = (ListView) ...
1
vote
1answer
94 views

How I see the Full ListView in my Android Application

I write for testing a Android Application with a ListView. This ListView I fill with a ListAdapter and it works fine. Only if I start the Application I don't see the Full ListView :( Here is my ...
0
votes
0answers
13 views

How can I get drawing cache of listview item that is not in listview view portal [duplicate]

Possible Duplicate: How to call getView() explicitly and call getDrawingCache() without returning null? I am trying to create a bitmap of a listview's items by using a for loop and calling ...
0
votes
0answers
325 views

How to call getView() explicitly and call getDrawingCache() without returning null?

I'm trying to create a bitmap out of ListView items. I am using the Greendroid library (if that makes any difference). I initially had this working for lists where # of items is < 7 (since you can ...
0
votes
1answer
83 views

onClickListener on ListView is not responding

In my Android project I have created a ListView and also an onClickListener is also added with it but while running my project the ListView is not responding against my click on it. Code public ...
0
votes
1answer
220 views

Make custom visualization for ListView inside a ScrollView

I have a ScrollView which contains a lot of items. On the bottom of it I add a set of items from another Activity. I check the input ArrayList from another Activity and should to add proper count of ...
1
vote
2answers
145 views

Android App List of lists

I was looking through the other list of lists posts and none of them seem to be helpful or usable in my situation (maybe I am just being dumb). Anyways, I am building an app that requires a login to a ...
0
votes
3answers
120 views

Listview with image different for each items

I have a problem with my ListView: The ListView item xml has a textarea and an Imageview, for each item taken from DB, I need to place a dedicated image (based on the _id). Now I have this code ...

1 2 3 4