The custom-adapter tag has no wiki summary.
0
votes
1answer
11 views
Find clicked row in listview and get data
I am using custom adapter to show the items in my ArrayList. Each row item has 2 textViews and an image button. Depending on the status of an attribute, image on the image button is changing. Although ...
0
votes
1answer
51 views
Error in async task
I am getting an error about Asynctask in Android i want to use it for getting datas via web service and bind them on grid view
public class ProductList extends Activity
{
protected void ...
0
votes
2answers
47 views
How to get particular record from database with image by using customadapter
Hi myself newbie to android ,I have already done with code of searching a particular record from database and displaying it list using simple cursor adapter, to get image also with data I started ...
0
votes
0answers
35 views
Using Endless Adapter, ListView won't update
this is my first time posting a question on this website, so please bear with me.
I need to implement a listView that possibly has an endless amount data... for the adapter, I made a custom list ...
0
votes
2answers
28 views
Handling imageButton clicks inside a custom listview
I have a listview with a custom Adapter. A custom row in the listView containts 2 imagebuttons that need to handle a something when I click on it.
But it doesn't work well like I want, because when I ...
0
votes
3answers
64 views
Android: NullPointerException Custom ListView Adapter
I'm creating a custom ListView. But I keep getting a NullPointerException and I don't know why.
I saw on a other question on stackOVerflow a guy with the same problem and he had to delete if ...
0
votes
1answer
61 views
Custom adapter list view is not getting refreshed
Here is my adapter class.
public class CustomListViewAdapterRetailList extends ArrayAdapter<RowItem> {
Context context;
public ImageLoader imageLoader;
public ...
0
votes
1answer
62 views
Listview with custom checkable rows backed by custom cursor adapter looses selection when recycling views
I know this question has been asked before but I have a spin on it that I just can't seem to find an elegant solution for.
How can I keep track of selected checkboxes in a listview which uses a ...
2
votes
2answers
51 views
not able to populate list from json android
I am trying to populate list object from an api.
This is one method jsonresult.
protected void onPostExecute(String result)
{
JSONArray con;
//String tag_name="tests";
...
1
vote
1answer
80 views
How to add buttons dynamically from a listView?
I have a ADD button, by clicking on that add button a list view pops out , and in every row of that listView there is a button. By clicking the button that particular row (i mean the text and image of ...
0
votes
4answers
87 views
Android Listview with different layout for each row depeding on rows values
I am trying to determine the best way to have a single Listview containing different rows styles.
I searched alot and found some tricks using getViewTypeCount() and getItemViewType(int position), to ...
-1
votes
0answers
54 views
Android - ListView with CustomAdapter - getChildAt returns NullPointerException
I am a bit new to Android programming..
I am trying to get the view of a ListViewItem in a ListView that uses a CustomAdapter but all I get when using getChildAt is a NullPointerException (seen in ...
0
votes
2answers
48 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 ...
1
vote
1answer
34 views
How can we call webview from the click of a link in a custom listview?
I am having a listView and a custom adapter, and i made an onclicklistener to a text view, now i want to open a link from that textview in webview, how can i do it?
0
votes
0answers
4 views
Shared pref having different file but same key
I have some doubts regarding shared preferences whose answer i am not able to find on the web after a lot of google searches.
i want to save approx 150 Custom rowitems containg int string and bitmap ...
2
votes
2answers
227 views
Customized Listview with TextView,TextView,RadioGroup in android
I'm developing an application with Listview for Student Marklist creation.
In this application, the List have 10 students. There are four grades provided for the exam which was conducted to those ...
0
votes
1answer
50 views
customview occupying the entire screen in the listview
Android 2.3.3
I have a listview and i am populating a customview in it.
CustomView - ListView Item
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout ...
0
votes
1answer
77 views
How to fill ListView with the Custom Adapter? list view empty (
I have custom adapter for listview. Programm works without erros, BUT List view is empty.
My adapter looks like:
public class CustomAdapter extends BaseAdapter implements Filterable {
private ...
0
votes
0answers
51 views
How to access view from custom adapter?
I have custom adapter for displaying ListView.
public class CustomAdapter extends BaseAdapter implements Filterable {
private ArrayList<OItem> _data;
Context _c;
private int _res;
public ...
0
votes
2answers
145 views
Implementing lazy loading for simplecursoradapter
Here I am getting stored picture paths from the database. So that I am showing the images in the gridview with the help of paths. But as it is shown in my code below, I am loading cursoradapter in the ...
3
votes
2answers
82 views
Change Gridview item visibility
I have an Gridview and Custom adapter.
in my adapter, i have a static ViewHolder instance.
static class ViewHolder
{
TextView _model,tPrice,pPrice;
ImageView picture;
}
This is my ...
0
votes
1answer
115 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
57 views
CustomAdapter java.lang.NullPointerException on PostEcecute
I have a an application which retrieves data from a database and displays it with a CustomListView. When the app is going to show the ListView it crashes with this log:
03-28 13:22:16.963: ...
0
votes
2answers
90 views
How can I make a RadioButton NOT inflate programmatically in a custom adapter?
All,
I have a custom adapter that is used for inflating quiz questions/answers into a ListView. Each question (single item in the ListView) have a variable number of answers, (but a max number of ...
0
votes
2answers
41 views
updating/refreshing List with custom ListAdapter
I am aware that there are plenty of similar questions, but they all have in common, that their solutions dont work with my list :(
I am trying to get my userList refreshing itself via the custom ...
0
votes
1answer
316 views
Pull to refresh and load in listview [closed]
I need to implement pull to refresh and load in listview.I have used custom adapter to create the listview.How could i implement pull to refresh and load using the adapter class.
Could anybody help ...
0
votes
1answer
109 views
ListView - Custom Adapter - Values keep changing when scrolling
Android 2.3.3
I am using a Custom Adapter to fill a listview. Each row in a listview has 3 textviews(Custom Layout), that are filled from the data retrieved from database.
The problem is, the data ...
0
votes
1answer
79 views
ListView - Custom Adapter - CursorIndexOutOfBound Exception
Android 2.3.3
I am using a Custom Adapter to fill a listview. Each row in a listview has 3 textviews(Custom Layout), that are filled from the data retrieved from database.
The problem is, the data ...
0
votes
3answers
450 views
ListView - Custom Adapter - Database
Android 2.3.3
I have a table in database with two columns. I wish to retrieve this data and show them in a ListView having two textviews(first column in first textview and second column in second ...
0
votes
1answer
17 views
ArrayAdapter Error
Hi I am trying to implement a custom adapter. I have been getting the following error:
03-16 05:23:22.003: E/AndroidRuntime(316): FATAL EXCEPTION: main
03-16 05:23:22.003: E/AndroidRuntime(316): ...
0
votes
3answers
97 views
Can't access R.layout.mylayoutname in my custom ArrayAdapter
I'm trying to create a custom adapter for my Categories list. For some reason I can't access my category_item layout when I'm trying to inflate it. Here's my code:
public class CategoryAdapter ...
0
votes
0answers
143 views
how to set list item to fullscreen in single activity android?
Actually I have bunch of images and I am passing those images to my custom array adapter to be present in a list view, I am getting a wonderful presentation of images in list view. But what I want is ...
0
votes
6answers
149 views
ListView with CustomAdapter giving NullPointer Exception
I am using one listview to show details of places. For that i had created one CustomAdapter but i don't know why it is giving me Null Pointer Exception please help me to sort this problem.
This is my ...
0
votes
0answers
146 views
ListView, SimpleAdapter, Image(Bitmap), SQlite, Android
all
I'm now troubling with filling up a listview with image(bitmap) for each item.
Firstly, MainActivity download multiple image files from server to local storage and other data to database.
and ...
0
votes
1answer
90 views
Custom adapter for gridview remember formatting options
I have some custom adapter for gridview in android app. When I start application first time everything is ok, but when I click button and call function refreshCalendar(), adapter "remember" text ...
0
votes
0answers
128 views
How to download images, pdf, doc using web services? [closed]
I have simple list where I have some folders and files(.pdf, images(.jpg/png/tif), doc, excel). these files are coming through server using .net web services. I am using ksoap. I am able to view ...
0
votes
2answers
258 views
notifydatasetchange not working
I know that this question is asked many times but i can't seem to make it work in my app
I create custom adapter that extends BaseAdapter, and inside it I put listener of drag and drop function to ...
0
votes
1answer
110 views
Background of List items is stretching more than height?
I have a listview with a custom adapter (tile) design. Everything should work fine but the thing is that the til (listview item background) stretches too much despite me giving layout_height a fixed ...
5
votes
3answers
134 views
filtering custom adapter IndexOutOfBoundsException
I'm novice at android.
My custom Adapter cause exception when filtering.
here is my code.
private class DeptAdapter extends ArrayAdapter implements Filterable {
private ArrayList<Dept> ...
0
votes
1answer
153 views
Android: ListView & customAdapter - List when clicked showes info of 2 items / editText not clickable
I did a custom Adapter for my List View which extends a basicadapter,
it was working fine until i added another row to my list_item.xml
so now when in my OnItemClickListner, on click should show the ...
0
votes
1answer
132 views
How we can download and display image (File), pdf, word doc in android using custom adapter in Adnroid
I am trying to use custom List adapter where I need to show jpg/tif/png/doc/pdf files and folders. I have used that but I don't know when we will click on that particular file how we can display that ...
2
votes
8answers
579 views
Onclicklistner not working in fragment listview
i have a listview with custom adapter in listfragment and also set onclicklistner for listview. but Onclicklistner does not work. please anybody help me.
Hear my code,
public class BasicFragment ...
0
votes
1answer
259 views
accessing a specific view from onclick listener inside getView of customer adapter
I want the onclick method to communicate with the other views in my layout. I am getting a NullPointerException when attempting to do so. I think I may be doing it wrong.
My getView method is below:
...
0
votes
1answer
119 views
How to add custom adapter using ArrayAdapter?
I am trying to add custom adapter where i want to add folder image and name of that particular folder which is I am getting from web services.
Please see my code:
ListView listview;
LazyAdapter ...
0
votes
3answers
197 views
Populating ListView with custom Adapter
I want to populate a ListView with multiple elements from a custom ListView Adapter.
I tried this tutorial.
No exception is thrown, but it doesn't display anything in my ListView.
Here's the code:
...
1
vote
1answer
118 views
CheckBox gets unchecked on scroll in a custom listview, didn't find a solution
I know this question has a lot of answers in the forum, but I tried all answers and none of them works with my code. The checkbox is unchecked whenever the list is scrolled down. Here is my code:
...
0
votes
2answers
91 views
how to change Button background in Custom adapter on Its onClick?
I am trying to change UI of button in custom adapter click, I am able to do functional thing on particular button click event. But when I tried to change UI of any Button, it reflects to last added ...
0
votes
3answers
68 views
Android Listview with clickable buttons
I have a ListView in which there are 3 buttons. All of them can be clicked. This is a custom ListView with a separate CustomAdapter class.
I want to click a button which will take it to another ...
0
votes
1answer
87 views
Class not found exception while calling custom adapter
After fetching the data, my app tries to inflate the data in ListView by calling a custom adapter. While inflating it shows the following error.
02-21 11:14:39.156: E/AndroidRuntime(499): ...
-1
votes
3answers
173 views
My Android-App doesn't Display ListView with custom Adapter
i'm writing an android app that should fetch song data from a parse.com database and display it with a custom Listview.
I tried it the way Nitin suggested but still dont get any listview displayed.
...





