The listadapter tag has no wiki summary.
6
votes
2answers
10k views
Android - How to Get a Layout Inflater Given a Context?
i am writing a custom implementation of a ListAdapter.
In its constructor, i'm taking in a Context, a resource ID (i.e. R.id.xxx representing the layout file), and a list and a map (these contain the ...
5
votes
1answer
801 views
Android: custom view layout for SectionIndexer and disabling SectionIndexer on the fly
Is it possible to use custom view as a section indexer? I.e. make it more transparent and use images instead of characters?
Is it possible to enable/disable SectionIndexer popup on demand without ...
5
votes
1answer
8k views
Android: ViewHolder pattern and different types of rows?
ViewHolder pattern improves ListView scrolling framerate, as seen in following example:
http://developer.android.com/intl/de/resources/samples/ApiDemos/src/com/example/android/apis/view/List14.html
...
4
votes
1answer
37 views
Changing EditText height and width on Runtime with some animation
I have Four EditText with different background.
I want to cover full screen when a EditText is selected with That EditText. For that I need to change the EditText width and height with some animation ...
4
votes
1answer
390 views
ViewPager and OnItemClickListener in ListView
I'm working on creating a swipe-to-dismiss list view adapter. My basic methodology is to wrap the list item's view as the second view in a ViewPager and provide the necessary callbacks in the item ...
4
votes
2answers
318 views
Trying to set a custom font to each individual ListAdapter button
I have a list adapter and im using holder.text.setTypeface(TYPEFACE) to set the type face and I have a string of names that im using assign each ListView button its text. But im wondering how to set ...
4
votes
1answer
465 views
how to generate dynamic data for an item in listview
I have created a list activity calles as Category List to show a list of category dynamically from web by parsing an XML file. The XML file contains values "ID"(id of the particular category) and ...
4
votes
1answer
2k views
Android ListView with Checkbox: automatically unchecks
I've got a ListView with a custom BaseAdapter. The list items contain CheckBoxes that need to represent a property from a database.
I use CheckBox.setOnCheckedChangeListener with a new ...
3
votes
3answers
148 views
custom Listview is not displaying as it should
I've created the format for my list items and my custom listadapter. The problem is that my listview is not displaying as i designed it to.
Here is my XML for each list item.
<RelativeLayout ...
3
votes
4answers
378 views
Android Handling many EditText fields in a ListView
Just a basic question: If I have several dozen EditText fields that are part of a ListAdapter, how can the individual EditText fields know to which row they belong?
Currently I am using TextWatcher ...
3
votes
1answer
2k views
System services not available to Activities before onCreate?
I cant figure out how to fix this error. I am very green to Android and Java so code will be very helpful along with explanations. Any Ideas? Thank-you.
The LogCat:
FATAL EXCEPTION: main
...
3
votes
2answers
3k views
custom row in a listPreference?
I am trying to create a ListPreference but somehow disable one of the items. Sort of like grey it out or something and not have the ability to choose it. It will be an upcoming feature and I want it ...
3
votes
1answer
328 views
Want to load part of an array into android ListAdapter
My code works like this to list all items in my String array - itemsarray
setListAdapter(new ArrayAdapter<String>(this, R.layout.row,
R.id.label, itemsarray));
However, I know by this ...
3
votes
2answers
3k views
How can I manage the height of android spinner items?
I have an android spinner that's populated by a list of strings using an ArrayAdapter and it operates fine, however because of the way the spinner is displayed I'm running into a display height ...
3
votes
4answers
17k views
Is there a super simple List / ListAdapter example out there for android
I have a web service that returns a super simple list of objects
MyObject[] data = webServiceCall();
MyObject has 1 field i want to display, "Name" (i.e. data[0].Name )
How can i turn this into ...
2
votes
2answers
43 views
Customized ArrayListAdapter.clear() is not working
I'm using ListView to show search results. I have a Coustomized arrayListAdapter which returns a list of Objects. This is working fine. My listView is showing just a TextView nothing else.
But I want ...
2
votes
2answers
65 views
Objects in HashMap - pass to ListView adapter
Is it possible to pass both strings and drawables as objects in the same HashMap, and then use this hashmap to populate a ListView via SimpleAdapter ?
I want this because I first get JSON data which ...
2
votes
3answers
274 views
How to add a dynamic view to a ListView item at runtime?
My problem is that I don't know whether I should use multiple list view or a custom listview item adapter which can grows dynamically. For example, for a particular user, they can have multiple ...
2
votes
2answers
107 views
Android EditText duplicates every character I type
I have several rows of EditText objects, which are maintained by my custom BaseAdapter class.
The EditText objects should only be able to accept numbers. In the image shown, I typed in "12345". As ...
2
votes
1answer
116 views
Listview + BaseAdapter - how to notify about change in single item?
I have a list view fed by BaseAdapter.
When something changes in data, I call BaseAdapter.notifyDataSetChanged. All works fine.
Now I wonder, if I change some tiny detail in some list item, is there ...
2
votes
1answer
223 views
ListAdapter with implemented SectionIndexer throws ClassCastException
I'm trying to implement a ListAdapter by implementing the Interface not extending BaseAdapter sub classes like ArrayAdapter.
But all I get in return is a ClassCastException telling me nothing about ...
2
votes
1answer
644 views
howto group radio buttons in a custom adapter?
My question is similar to this question and since I was unable to find a satifying answer I would like to put up my question explicitly.
I have a custom adapter which takes an array of strings and ...
2
votes
2answers
701 views
Implementation ListAdapter and possible memory leaks
I have a very simple Activity:
public class A extends ListActivity implements ListAdapter
{
@Override public void onCreate(Bundle b)
{
super.onCreate(b);
setListAdapter(this); ...
2
votes
2answers
273 views
Android ListView with an incrementally built ListAdapter
I am trying to figure out the right architecture for a list view that loads information from an http endpoint. My problem is that the information to be displayed has both text and image content. If I ...
2
votes
4answers
601 views
How many items a ListView can store?
I'm new to Android programming. I wonder how many items a ListView can store? I search in docs but they don't talk about this. What if I put a lot (maybe 10k) items into a ListAdapter, will it affect ...
2
votes
1answer
1k views
Android Custom ListView selected item children?
I have a custom listview row that contains a number of textView components. Instead of the "standard" single text item, I have created a item where each listview row contains several bits of ...
2
votes
3answers
8k views
Android ListView with multiple select and custom adapter
I have a ListView with a custom adapter. The ListView allows multiple select, but somehow it's not recognising when an item is selected.
I've already made the adapter items extend Checkable, but ...
2
votes
1answer
1k views
Android: Bind data to a ListView without preparing ArrayLists for the ListAdapter?
Right now, I get my Models in a nice object-oriented form. In order to bind them to my List, I have to use the listAdapter. Can I only fill this listAdapter with stupid ArrayLists? Because that means, ...
2
votes
4answers
394 views
Return empty row in Custom ArrayAdapter?
when my ListView is being filled by a custom Array Adapter, I check for a certain parameter in the current list item, and if it is false, I want to return an empty row. At the moment, I am doing this ...
2
votes
1answer
5k views
List view and list adapters for displaying json
I am trying to display the text from json in a list view. I got help for retrieving the json text from the following...
...
1
vote
1answer
39 views
java.lang.IllegalStateException in android?
I am using three tabs.when i click the tab, an activity starts that displays multiple listview with header.For that i use listadapter
and my code seems adapter.addsection("Header String",new ...
1
vote
1answer
32 views
2 ListAdapter and more, in one Activity
How I can add 2 ListAdapter and more, in one Activity? For example:
1
vote
2answers
56 views
OnClick event in ListView row with 2 Buttons
Hei everyone!
I have a ListView with my own ListAdapter.
In every row i have two Buttons.
Since hours i'm trying to implement the OnClick methods for the two buttons, but i don't find the right ...
1
vote
2answers
48 views
how to insert a checkbox in a list
I have this list ... I should put a check box as the last element (where the word "notification") ... I do not know how to do .. because each element has its own icon ... but the last I've got to put ...
1
vote
2answers
42 views
come back when I select an item from the list
I made a list such that every time I click on an item, it opens another page. The problem is that if you use the back button, it will close the application. I would rather return to the previous menu ...
1
vote
1answer
45 views
delete line in the list
how do I delete the lines that separate rows in the list? See this image:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
...
1
vote
0answers
69 views
Android: Enable touch sound on View
Usually on the Android OS when something is touched like a button or list item it makes a touch tone or sound. I have a custom made AdapterView ...
1
vote
0answers
113 views
Can't select RadioButtons when used with an ExpandableListView
I am trying to create an expandable list view like the one described here. I am using the following adapter for the list:
mAdapter = new SimpleExpandableListAdapter(
this, groupData,
...
1
vote
4answers
246 views
ListView with custom adapter won't update when contents updates
I have one custom ListView called AreasListView which I've included in the XML file. The only things that differentiate this from a ListView are the following lines of code:
private void setFooter(){
...
1
vote
1answer
35 views
string to XML Android
I have a XML string comming from a Rest WS that I created on .net, I am able to consume the websevice and get the return I need, however this returns comes back as String.
XML from WS:
...
1
vote
2answers
805 views
Android Binding SQLite to GridView in Eclipse
I have made the following code to retrive data from SQLite database.
public Cursor fetchAllScores() {
return database.query(DATABASE_TABLE, new String[] { KEY_ROWID,
KEY_PLAYDATE, ...
1
vote
1answer
136 views
Change the background color of only selected entries in a ListView
I have a ListActivity in which I show some entries. Once an entry is selected, I show another Activity with the content of the entry. I'd like, when I return back to the ListActivity, that the unread ...
1
vote
5answers
208 views
Android, Null Pointer Exception on ListView test code
I am building an app that uses ListView and a custom adapter extending BaseAdapter to handle the data to the ListView. The code is as follows:
newlist.java compiles/runs fine
public class newslist ...
1
vote
1answer
596 views
Android custom list view get adapter
hi guys i have been searching for way to get the details of the custom listview. For example i have listview in which a custom view containing a checkbox will be embeded. All that i need to do is to ...
1
vote
1answer
252 views
Refresh ListView using listadapter?
I would like to refresh the ListView every time I change the base data. Please see the following
example:
@Override
public void onCreate(Bundle savedInstanceState) {
...
1
vote
1answer
341 views
FastScroll Behaves Strangely with a Custom ListAdapter which implements SectionIndexer
I am working on a ListActivity that has a inner class that is a child of SimpleAdapter that implements SectionIndexer.
class MySimpleAdapter extends SimpleAdapter implements SectionIndexer {
...
1
vote
1answer
233 views
Update textView from an item in a custom listView Android
I have a custom listView with a textView, editText and a Button on a row. The listView is created with an adapter.
I want to update the textView with the value entered in editText when I press the ...
1
vote
1answer
228 views
listview and screen orientation
I dont' event know if it's possible but here is what I would like to achieve. I have some actvities that show some data in listviews with list adapters (just compòsed of text views).
The layout is ...
1
vote
0answers
138 views
Convert ListView to ExpandableListView
I've got an Activity with a ListView, filled with the help of an Adapter, that extends a parameterized ArrayAdapter<A>. Class A, that parameterizes this Adapter encapsulates a List of objects of ...
1
vote
5answers
367 views
Android ListAdapter is not updating
I have a ListAdapter which is used to display a list in the Listview. Now I have added a longpress menu action for delete any selected item.
public boolean onContextItemSelected(MenuItem item) {
...