The custom-adapter tag has no wiki summary.
2
votes
0answers
65 views
Numeric softkeypad appears and instantly changes to normal keypad
HI all I was looking for a little help with my numeric softkeypad and an EditText. I have an activity with basically a 2 column table which has 1 column editable via EditText. I want the numeric ...
2
votes
1answer
130 views
Duplicated layout reference in list view
There is an really weird thing happening with my listview. I am creating an ListView with buttons and an editText.
It's disposed like this: [Button] [EditText] [Button], The buttons works like an ...
2
votes
3answers
684 views
Unable to set margin of item in ListView using custom Adapter
I am attempting to set variable left margins for items in my ListView. The problem occurs in my custom Adapter in the getView method:
public View getView(int position, View convertView, ViewGroup ...
1
vote
2answers
34 views
Application force close, when trying to set one TextView on customListAdapter
I want to set text in TexView, actually i store number in array list but,it always force close. so, i try just set manually though, it still force close. I have no idea why others textview able to set ...
1
vote
4answers
120 views
Custom Adaptor for List View
I want to create a custom adapter for my list view. is there any article which can walk me through how to create one and how it works..
Thanks in advance
1
vote
2answers
65 views
Sometimes my icons in my list view are not showing
My problem is that I have implemented a custom arrayadapter, that fetches images from an url and sets them to an imageview. It works, sort of. Sometimes some of the images are not showing up. Somtimes ...
1
vote
1answer
176 views
Android ArrayAdapter tell all other views to refresh themselves
I need all of the other views in my arrayadapter to check their attributes and return to a default attribute at certain times
use case: listview items (a)(b)(c)(d) , when you touch (a) it's ...
0
votes
0answers
16 views
android - How to handle onCheckedChangeListener for radiogroup in custom listview adapter
I am developing an app which has a list view with custom layout as follows :
It has 4 radio buttons in radio group and a text view. Actually, it ll be shown as question(textview) and answers(radio ...
0
votes
1answer
39 views
The OnCheckChanged listener works only for the first checkbox in a customlistview
The listener for checkbox in my custom listview works only for the first checkbox. I think this has something to do with the position in getView(). I'm attaching my code with this question please ...
0
votes
1answer
13 views
Get a field from a ListView
I have an Activity with ListView took in my Database. I would like to, when I select one, get the id field.
lv = (ListView) findViewById(R.id.listMessageConversationView);
Cursor c = ...
0
votes
0answers
62 views
Get list of checked items on button click from custom adapter
I have a custom ArrayAdapter that displays communication data in a ListView. (A list of phone numbers, email addresses and web urls) The communication data is held in an ArrayList of Communication ...
0
votes
2answers
111 views
Custom adapter: get item number of clicked item in inflated listview
I have a custom baseadapter which does some lazy loading of some images, and then inflating the layout so I end up with a listview where I have both image and text in one row.
When the user presses ...
0
votes
1answer
37 views
How to get ListItem height of a listview (CustomAdapter used)?
I am using custom adapter for a listview and i need to get the listitem height for displaying the listview in a scrollview. I tried to do that in a normal listview with simple adapter. I am able to ...
0
votes
1answer
22 views
handle results from sqlite and pass them to custom list adapter
i work with sqlite and i fetch results from two columns(name,icon). i want to pass them to a custom adapter so as to set the name as the text of a (TextView) and then the icon as his drawableLeft with ...
0
votes
1answer
54 views
Android Icon on listView Custom Adaptor with separators
I want to include a play icon on a list view when ever user clicks on a row.
I am using a custom adapter (Lazy Load with separators)... I had issue with separator being overlapped with other rows so ...
0
votes
2answers
31 views
Coloring a row in customadapter android
Ok so far I have created this, and my items are being displayed. Lets suppose that I am having the key values in an array with as many elements as the rows. If I have 16 rows, then my array has 16 ...
0
votes
1answer
87 views
Get childview of adapter in android
I have an adapter with 2 layout the fisrt one is the song item with the details and the second layout is the song item with the details and a seekbar for the playback position of current song selected ...
0
votes
1answer
213 views
Android - custom adapter for multiple choice listview
i need to read the contact list in my android app and show it to the user with a multiple choice option.
I've just seen the android example with the ListView.CHOICE_MODE_MULTIPLE but i need something ...
0
votes
3answers
44 views
Custom List View duplitcating Items
I am creating a custom ListView by extending the ArrayAdapter. When i visit the activity the first time it shows up correctly. when i go back and revisit the Activity. It repeats the content all over ...
0
votes
1answer
139 views
Loading Image using Asyn Task
I am trying to create a custom List Adapter which has an Image for every item it needs to download from the internet. When i first enter the Activity - the app freezes for a while till the images are ...
0
votes
1answer
93 views
Image in List View Adaptor
I am trying to create a Custom List View Adapter by extending the ArrayList
When i do the following i am not able to get the Image from the URL and display it in the List View but it displays the ...
0
votes
1answer
126 views
ImageView in the custom ListView Array Adaptor
I am trying to create a Custom List View using the Array Adaptor.
POJO Item class
public class Item {
String itemTitle = "", itemTimestamp = "", itemDescription = "";
ImageView itemImage;
...
0
votes
1answer
24 views
Can i have option to have multi component click including the listitem click in a listview?
I have used a button in all list items of a listview. I lost the list item click when i added a clickable componenet is list items of the list view. Now i need to add a button in listitems in of the ...
0
votes
1answer
55 views
Calling a CustomAdapter method from onItemClick
I have a customAdapter whose .xml for the views in the grid is:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
...
0
votes
2answers
94 views
How to set click event for multiple components in each list item of a listview?
I am using a listview with mulitple list items.
Each list items contain a button now i am able to click the buttons but i lost the listitem click.
This happens whenever i add a clickable component in ...
0
votes
1answer
239 views
How can inflate a layout containing listview in a alert dialog?
I am using a listview with a custom adapter in a layout.
Now i am trying to bring that layout containing list to my alertdialog.
I tried to bring simple layouts not containing list to alert dialog ...
0
votes
1answer
226 views
ListView ArrayAdapter filtering - duplicate items
I trying to filter listview with custom adapter. When I start typing on edittext the list view should be filtered. Below is the code of adapter. The custom object has overridden method toString which ...
0
votes
1answer
88 views
Can i get onClickListener for this list listed by CustomAdapter?
I have listed a list with custom adapter to display different images in each list item and succeeded.
Now i need to add a onitemclick listener for that list.
Unable to access the id because the list ...
0
votes
2answers
93 views
Can i use custom list to appear in a alert dialog?
I have created a custom adapter to display different images in the each list items from the drawable resource.
Now the custom adapter is working good in a listview.
Now i need to display the list in a ...
0
votes
1answer
84 views
Weird behavior in ListView GetView() method position
I've a custom adapter for my ListView where I send to it a List, and if the position is in the list then the imageview (that is in the custom row) change its src to another.. Here is the GetView ...
0
votes
1answer
198 views
Storing the state of checkbox in listview while using custom BaseAdapter in android?
i have a listview which is having image, text and checkbox i have inflated this using BaseAdapter. i want to send only those images which are selected but how to store the state of checkbox ?
may be i ...
0
votes
0answers
63 views
Android custom adapter for textview problem
I have create the android application using custom adapter. In this program i have listed all the suggestion in the textview inside the list.My problem is, the first suggestion is displayed and the ...
0
votes
0answers
93 views
Android custom adapter for textview
I have create the android application program..In this program i am using custom adapter for spinner ..my problem is i want to set the value of the textview in the listview.pls tell some idea..Thanks ...
0
votes
3answers
56 views
Get the values from one layout to next layout?
I've listed some items in list that extends Activity and the list are listed using Custom Adapter. My question is, this is my xml File I've added some items to this spinner. How can i get the spinner ...
0
votes
2answers
216 views
How could i add a spinner in listview with its listitems by using customadapter?
I am using a listview and there are number of listitems.
I need to add a spinner with all my listitems.
I am using customadapter and my problem is for adding a image we can use imageview.
For spinner ...
0
votes
2answers
260 views
empty view on ListActivity not working
I'm pulling my hair out trying to figure this out. From all the tutorials I've read, the way I have this setup should work. I have a ListActivity that is using a custom adapter to display some data. ...
0
votes
2answers
121 views
Android set elements of listview cell WITHOUT custom listview adapter
I want to do something like mylistview.setElementsofView(0).getElementById.setColor("black");
currently the only way I know of doing this is setting up a custom list view adapter, setting up ...
0
votes
0answers
63 views
Customization of listView with customized row in each
I want first row of listview as Gallery and other rows as textviews.
My problem is that for first time it will work perfectly but when I scroll my screen the galley comes at second last position and ...
-1
votes
2answers
107 views
Android SimpleAdapter vs Custom Adapter
When I learned Android I've the learned how to create my own listview, creating the item layout, creating the adapter, the adapter holder, etc ....
Recently I encountered a code that was using ...
-2
votes
0answers
21 views
CustomAdapter to display JSON Output
I am developing an application that connects to a server and retrieves information that is then displayed on an android device. My code at the moment returns the values of name and address and ...