A concrete BaseAdapter that is backed by an array of arbitrary objects.

learn more… | top users | synonyms (1)

0
votes
3answers
28 views

How to store values in onSaveInstanceState() and retrive?

Am trying to store value of a arraylist in onSavedInstanceState() and get the values in a array list in onCreate method but it raises an eeror like unable to pause activity here is my code public ...
0
votes
3answers
24 views

More than one TextView in the constructor of ArrayAdapter

I have a class that extends ArrayList. To show its contents in a ListView widget, I extend ArrayAdapter.The ListView has to show 2 properties for each item of my extended ArrayList. For that reason, I ...
0
votes
0answers
35 views

arrayadapter setnotifyonchange(false) not working

I am trying to do something very similar to this post android ArrayAdapter.setNotifyOnChange(false) does not prevent listView from refreshing but the answer given does not seem to be very helpful. ...
0
votes
1answer
22 views

ArrayAdapter in my ListFragment won't refresh even when I use notifyDataSetChanged

I am working on Android project. In my OrderPage class which extends FragmentActivity I have List with my products. In my PositionsFragment class which extends ListFragment I implement List, which ...
0
votes
5answers
40 views

passing the data of the selected items to another activity - android

I have a menu (fishcombovaluemeals), and when the user select more than 1 item i want those items to appear in a list in another activity (shopping cart) ,i have tried alot but the data ...
0
votes
3answers
34 views

Custom ArrayAdapters keep failing to launch

package com.test.ExampleListview; import android.app.Activity; import android.content.Context; import android.os.Bundle; import android.view.View; import android.widget.AdapterView; import ...
0
votes
1answer
35 views

Android ListView with lots of data - out of memory error

I am publishing a bilingual dictionary application (https://play.google.com/store/apps/details?id=com.akkzrt.szotarhude012013a), both language with more than 130 000 headwords. At program start I am ...
1
vote
3answers
32 views

Displaying different type of rows in an Android list

I have a list of polymorphic entities, for example List<Person> where a person can be employee, manager, soldier, royalty, etc... and I want to display the person list in an android list-view ...
-1
votes
1answer
19 views

Android Studio: access a listview element in the xml file from the java file.

I am working in android studio and I created a listview in the xml layout file. How can I access that listview in my java file in order to attach an arrayadapter to it?
0
votes
1answer
19 views

DialogFragment created by an event from a button in a custom ArrayAdapter always has same position

I'm a newb so try to be patient with me Here is some background information about the problem I am having: I have a fragment, ViewFragment, that consists of two components: a Spinner and a ListView. ...
-1
votes
1answer
32 views

Android ArrayAdapter, error on application run

i got a problem running my android application. Everytime i try to start my app, it automatically says it stopped. I used a bit of this youtube tutorial: http://www.youtube.com/watch?v=W1JE-jUisVU ...
-1
votes
2answers
36 views

pass a String array from one activity to another Activity in android [duplicate]

I am having two activities in my application. I want to pass tha array of String from one activity to another.. How to pass this values from activity to activity?
0
votes
1answer
41 views

listview checkbox state not saved properly

I have a listview with checkboxes. I use SharedPreferences to save the state of every checkbox but when i reopen the application not the same checkboxes are checked. I think there is something wrong ...
0
votes
0answers
8 views

not able to use multiple spinners from a single Arrayadapter having one string array resource

i am trying to get 2 string type data from 2 different spinners that are using the same array adapter. I have setup the onItemselectedListener() with switch and case statements. after searching for a ...
0
votes
1answer
19 views

Inflate custom component into ArrayAdapter

I know how to inflate custom layout from XML, but how can I inflate custom component into ArrayAdapter? Here is my component: public class MyComponent extends LinearLayout { private EditText ...
0
votes
0answers
9 views

MultiAutoCompleteTextView adapter notifyDataSetChanged

Is there a way to update a MultiAutoCompleteTextView's array adapter? I'm using the bellow code and it doesn't work. Please notice also that "emailList" is a String ArrayList. Thanks in advance ...
1
vote
0answers
22 views

ArrayAdapter text filtering breaks in DrawerLayout

I have the unfortunate feeling that this is simply a bug with Android, being that DrawerLayout is still relatively new. Basically what I have is a ListView, with an ArrayAdapter set on it. I was ...
0
votes
1answer
27 views

how to bind groupitems and childItems individually in expandableView in android

I have made a simple android application for the ExpandableListView demo for learning pupose,i have made following things please help me.how to bind data to particular child and Groupitem.I have tried ...
0
votes
1answer
20 views

How to advance adapter to use addItem function in android?

I have a problem. I can't modify some code to advance it for something functionallity. Here the code: final Item[] items = { new Item("Email", android.R.drawable.ic_menu_add, 7), ...
-2
votes
4answers
38 views

NullpointerException error in android gridview [closed]

I have to develop an one android application. Here i have to create custom gridview adapter class. But am getting following error: 06-14 14:56:26.676: E/AndroidRuntime(797): Caused by: ...
0
votes
2answers
32 views

how to call ArrayAdapter constructer from Fragment in Android

I am trying to add a two-column ListView to my android app. When I created the project, I selected the option Fragment which creates that beautiful navigation by sliding to left and right. So my ...
0
votes
1answer
24 views

Spinner crashing activity

I have a really simple app with a edittext, a button and a spinner. When I try to create a new Array Adapter, my program crashes with the following logcat: 06-14 02:48:23.082: E/AndroidRuntime(1065): ...
0
votes
0answers
5 views

ListView in android displays same entry in all the ListView item in android

i have made a simple app in android.for listView binding with an arrayList.But when i put some value.same values printed on all the Listitems of listView my code is as below: sqlView.java package ...
0
votes
1answer
39 views

Listview's item changed while listview scrolling in android

I set up adapter for ListView and in my inflaterLayout i put more one TextView to display Category, and when i get same category name that time i hide Textview from ListView and when i get the ...
0
votes
3answers
44 views

Convert Arraylist to Array, data of Arraylist is of custom class type

I have retrieved data from database and added to Arraylist using a class called AddDetails. In AddDetails class I am assigning all values. Then I have sent that ArrayList to activity class where I ...
0
votes
1answer
31 views

ArrayAdapter NullPointerException in BroadcastReceiver onReceive

I have an activity where I'm using an ArrayAdapter that is declared in the class body itself: ArrayAdapter<String> btDevArrayAdapter = null; in my onCreate() function I do the following: ...
0
votes
1answer
49 views

Custom view is missing constructor used by tools for adapter

I got the following warning: Custom view com/example/view/adapter/SomeAdapter is missing constructor used by tools: (Context) or (Context,AttributeSet) or (Context,AttributeSet,int) in my ...
1
vote
0answers
21 views

Inflating a layout in getView with inflator vs super.getView()

It seems that I have two ways to inflate a row layout in getView: 1) convertView = super.getView(position, convertView, parent); 2) convertView = mInflater.inflate(R.layout.row, parent, false); ...
0
votes
1answer
34 views

Simple VIewHolder pattern implementation bug using convertView

I'm trying to implement the ViewHolder pattern with convertView. Two questions: 1) When I comment lines #1 and #2 (which are required for the pattern) everything works fine. When the if is in place ...
0
votes
1answer
43 views

How to Update Adapter in another View

This is what I have: Step 1. There is a ListView that shows items a user can rate. It is a Fragment. Any item that has already been rated is made bold. Step 2. If user clicks on unrated item, it ...
-1
votes
0answers
32 views

Cannot get headers working with SeparatedListAdapter [duplicate]

I am using the below class for list view headers, but here in this line headers = new ArrayAdapter<String>(context, R.layout.list_header); we are using xml , but i want to do this progrmatically ...
0
votes
3answers
57 views

ArrayAdapter without refering to xml

I am working on List View with section headers, now i have a ArrayAdapter like this: header = new ArrayAdapter<String>(context, R.layout.header); and i am using header in this way: view = ...
0
votes
0answers
22 views

XML parsing Using Asynctask from web url

I tried to fetch data dynamically from a web url into a custom list view using XML parser.I was able to display the data in the list view(without Asynctask).But unfortunately when i tried to execute ...
0
votes
0answers
40 views

ListView.setSelection is not working

I am working on a dialog that has a ListView .. I have successfully put the adapter,selector,list_itemlayout in the onCreate() as follows.. protected void onCreate(Bundle savedInstanceState) { ...
1
vote
5answers
61 views

ListView: How to add data on custom ArrayAdapter?

To have a colorful ListView I have created my own ArrayAdapter, but when I want to use adapter.clear() or adapter.add() it gives me errors. Here is the code and errors. XML file: <ListView ...
0
votes
0answers
46 views

java.lang.NullPointerException at android.widget.ArrayAdapter.init(ArrayAdapter.java)

lang.NullPointerException android.widget.ArrayAdapter.init(ArrayAdapter.java) just am adding Arraylist values into customAdapter class and setting that values into listview see below code helpm me ...
-2
votes
2answers
32 views

Unable to access the data in listview from json in android

Can anyone tell me what this logcat is asking for? Suggesstions plz. Thanks for your precious time!.. StationAdapter public class StationAdapter extends ArrayAdapter<Stations> { Context ...
1
vote
3answers
75 views

Dynamically adding custom row to listview

By referring this, I created following: main.xml <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="fill_parent" ...
0
votes
0answers
12 views

Android array adapter is not working “check the code”

when i try to lunch this activity the app is crashing why is that happening please i need some help and check th code i have post it here check if there any thing wrong in this code cause i didnt ...
0
votes
3answers
50 views

Why Illegal state exception is throwing when Iam browsing the Files on sd card?

06-06 10:06:22.404: I/System.out(418): Files:[Ljava.io.File;@406f43a8 06-06 10:06:22.414: I/System.out(418): List all Items:[/sdcard/MyVideo, /sdcard/.android_secure] 06-06 10:06:22.414: ...
0
votes
0answers
21 views

Hover fulfilment item on ArrrayAdapter when click it

I displayed a ListView using ArrayAdapter. When click each item on list I using setOnItemClickListener to handle. I have the problem when I clicked it, the hover only fill the text not fill all item's ...
0
votes
4answers
43 views

Populating ListView with ArrayList<Object>

I'm trying to populate a ListView with an ArrayList. The ArrayList contains Usuarios Objects. Usuario has two fields (String nombre, String edad). This is my code: ListView listview = (ListView) ...
0
votes
0answers
30 views

Custom arrayAdapter not working in Fragment

I have defined a custom arrayAdapter in a fragment to take data from an arrayList of objects (ShoppingListItems), my problem being that only one item is aded to the listview even though the items are ...
2
votes
1answer
45 views

ListView with Custom Layout including two RadioButtons

I am tryin to make a quiz app with translations. So there are two ArrayLists with Question Loaded in differnt languages. I can show them in the List View as well. My problem is when I click on One ...
0
votes
1answer
37 views

How to fix recycling of list view in android

I have a custom list view having multiple rows. Each row have a layout as header with some name on it. i am setting this layout visibility to GONE when the name on the layout is same for the next row. ...
0
votes
1answer
31 views

Spinner dropUP instead dropDOWN android

I have an Adapter which extends from ArrayAdapter in order to fill one Spinner with one collections of objects (City). Both all objects and adapter work correctly, at least what it that it seems. The ...
0
votes
1answer
25 views

Using TreeSets for ArrayAdapters Equivalent instead of ArrayLists

Because ArrayLists are not particularly efficient, I would like to use a TreeSet in my Android App that will add items, and display them in alphanumeric order. Is there anything similar to an ...
-2
votes
0answers
30 views

Listview items overlapping

I have a problem with ListView which I will expose with a simple app. I have a very simple app where I have a ListView. Each element of the listview is a simple text view. When I have many items it ...
0
votes
2answers
64 views

custom listview with radiobutton return same id on setOnCheckedChangeListener

I am using custom listivew with has buttonGroup containg 5 radiobuttons in each row , setOnCheckedChangeListener(new OnCheckedChangeListener() { @Override public void ...
0
votes
1answer
36 views

Listitem of ListView not bright enough

I am making an application in which user has an option of searching patients. When the user searches for a patient, results come in the listview. But the problem is that the results are not bright ...

1 2 3 4 5 24