Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

13
votes
1answer
15k views

What is “android.R.layout.simple_list_item_1”?

I started learning android development. I'm following a todolist example from a book. Here is a piece of code: // Create the array list of to do items final ArrayList<String> todoItems = new ...
10
votes
4answers
146 views

What's the difference between opening an app from the applications screen and the recently used apps list? (android

Can anyone tell me what the difference is between opening an app from the applications screen and opening it from that recently used apps list that pops up when you long-press the home button? I ...
9
votes
8answers
274 views

notifyDataSetChanged for multiple checkboxes

In attached image, SelectAll checkbox is present with in an activity, and all checkboxes within adapter. If i checked SelectAll then all checkboxes are checked in adapter and if I unchecked then all ...
8
votes
1answer
3k views

Unable to modify ArrayAdapter in ListView

I'm trying to make a list containing names. This list should be modifiable (add, delete, sort...). However, whenever I tried to change the items in the ArrayAdapter, the program crash, with ...
8
votes
3answers
2k views

ListView in ArrayAdapter order get's mixed up when scrolling

I have a ListView in a custom ArrayAdapter that displays an icon ImageView and a TextView in each row. When I make the list long enough to let you scroll through it, the order starts out right, but ...
8
votes
1answer
2k views

How to override filter in android's ArrayAdapter?

I have an ArrayAdapter wrapped around an ArrayList of custom objects. I'd like to write a custom filter for that adapter so that when I call getListAdapter().getFilter().filter("abc") the list will ...
8
votes
2answers
2k views

How to write a custom filter for ListView with ArrayAdapter

I have a ListView which is connected to a ArrayAdapter where Artist is a simple class of mine, that has only an id and a name. Now I want to filter the ListView so I call: ...
6
votes
1answer
12k views

Custom filtering in Android using ArrayAdapter

I'm trying to filter my ListView which is populated with this ArrayAdapter: package me.alxandr.android.mymir.adapters; import java.util.ArrayList; import java.util.Collection; import ...
6
votes
4answers
11k views

Display HTML Formatted String

I need an example of how to display the strings that I have marked up with simple html into a TextView. I have found "Spanned fromHtml(String source)", but I don't know how to plug it into my java ...
6
votes
1answer
16k views

Android - Adding and showing items to ListView one at a time using an ArrayAdapter

I'm using an ArrayAdapter to add items to a custom ListView and showing the results in my Android app. The problem I'm having is that the ArrayAdapter seems to wait until all items are in it before ...
5
votes
1answer
149 views

Android autocomplete multiple textview lines in one result

is there anyway to have two TextView in one AutoCompleteTextView result? e.g. ------------------------------- result 1 title result 1 alt text ------------------------------- result 2 title result 2 ...
5
votes
2answers
517 views

Is ArrayAdapter thread safe in android? If not, what can I do to make it thread safe?

Lets say I extend ArrayAdapter and in the code where I am overriding getView(int i, View v, ViewGroup g), I retrieve the current item using getItem(i). Can I be sure that getItem(i) will return an ...
5
votes
3answers
200 views

how can i put different colors in ListView

i want to get the different colors in each row of the list view but current only one color is shown so how can i do this ArrayAdapter<String> adapter=new ...
5
votes
2answers
1k views

How can I create a list with only certain items expandable?

I am trying to compose a list with some items expandable and some single items. I wish to have it so that when either a single item or expandable list child is clicked, I can call an intent based on ...
5
votes
1answer
2k views

Spinner cannot load an integer array?

I have an application, which has a Spinner that I want populated with some numbers (4,8,12,16). I created an integer-array object in strings.xml with the items mentioned above, set the entries of ...
5
votes
3answers
16k views

how to add item to Spinner's ArrayAdapter?

i had a EditText , a button and a spinner . When click the button , the spinner will add a new item with name you entered in the EditText. But here is the question, my adapter.add() method seems ...
5
votes
2answers
7k views

Android How do i overwrite the filter for my ArrayAdapter?

Hey guys my first post here... Im trying to write a custom filter to filter the arraylist in my arrayadapter such that my listview is filtered when i click on the button. For instance when i click on ...
4
votes
2answers
207 views

Generics with ArrayAdapters

I've run into a problem while trying to create a generic ArrayAdapter. It probably is related to my limited understanding of generics in Java and was hoping somebody could set me straight. Basically ...
4
votes
1answer
324 views

ArrayAdapter.getPosition(item) Returns What?

I see the documentation says this method returns the position of the given item, but what would it return if no such item exists in the ArrayAdapter?
3
votes
1answer
54 views

Custom AutoCompleteTextView behavior

Out of the box, the AutoCompleteTextView widget does not seem to be able to match the input string in the middle of a list value - the matches are always made at the beginning; e.g., entering "ar" ...
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
1answer
281 views

Which Adapter to Use - BaseAdapter or ArrayAdapter?

I have a JSON string with the multiple instances of the following Name Message Timestamp Profile photo url I want to create a ListView where each list will have the above. Which is the better ...
3
votes
4answers
278 views

Android How to know which check box is selected

I'm making my first Android application and I'm having a problem for which I can't find the answer anywhere on Google. I want a list of items with checkboxes. I want both the item itself and the ...
3
votes
2answers
620 views

Large dataset with ArrayAdapter and ListView in Android

For learning purposes I would like to write an Android application that will display a list of numbers from 0 to Integer.MAX_VALUE. I currently have an app that will display numbers from 0 to 100, ...
3
votes
1answer
246 views

Calling ArrayAdapter causes infinite loop?

In my app, I have an option to save an item to favourites. I save two ID's in an ArrayList. When a user calls favourites, it loops through the arraylist and for each item, I get the corresponding data ...
3
votes
3answers
497 views

Disappearing divider in ListView when ArrayAdapter.isEnabled returns false

I'm using ListActivity with my own ArrayAdapter class. When I override the methods ArrayAdapter.areAllItemsEnabled() and ArrayAdapter.isEnabled() the divider between some cells in the list view ...
3
votes
1answer
632 views

Listview's ArrayAdapter notifydatasetchanged() very slow redraw

I've a quite simple list with 3 textview fields on each row. We are updating their values every 2 seconds or so with data coming from a background webservice call ( AsyncTask ) We compare the coming ...
3
votes
3answers
2k views

Change a specific row in a ArrayAdapter ListView Android

I am trying to change the color on a specific row depending on different states. This is the code i have at the moment. public View getView(int position, View convertView, ViewGroup parent) { ...
3
votes
3answers
4k views

ListView with ArrayAdapter and ViewHolder adding icons to the wrong item

I have a dynamic ListView which uses an ArrayAdapter. When a name is selected from a spinner, the name together with an icon showing whether they are male or female gets added to the ListView. Mostly ...
3
votes
2answers
11k views

Android: notifyDataSetChanged() not updating listview after orientation change

I have a semi-complicated problem and hoping that someone here will be able to help me. On a click event I create a thread and start a long-running operation based on this method. After the ...
2
votes
2answers
55 views

Strange behavior with ArrayAdapters in Android

I've been playing around with ArrayAdapters and I've reached a point where I'm getting different results from two almost identical ArrayLists + ArrayAdapter combinations. The first one: An ArrayList ...
2
votes
1answer
134 views

Android ArrayAdapter not clearing?

I'm having a strange issue with a custom implementation of Android's ArrayAdapter. To give some background, I'm trying update a ListView's contents while preserving the current scroll position. I ...
2
votes
3answers
64 views

arrayAdapter = infinite loop? (cf: code)

So i have 2 questions about this ArrayAdapter : 1. the third parameter List<RSSItem> list in the constructor is automatically analysed in getView, and position will iterate through each item in ...
2
votes
1answer
82 views

Using ArrayAdapter for ListView giving errors

I'm trying to add strings into a ListView, which gets called inside another ListView (changing the ContentView inside the OnItemClickListener ) Here's the code: lv1.setOnItemClickListener(new ...
2
votes
2answers
133 views

How to show ArrayAdapter's text and Icon in list in android?

I am creating online media player. In which user can create their own playlist. So for each user there is a different list. And in that list there is one Item called Quickmix which is fix and which ...
2
votes
1answer
130 views

How to get ArrayAdapter adapters into an ArrayList?

I'm trying to make an app that will detect nearby discoverable Bluetooth devices, and throw all the mac addresses into a list. For reasons I don't understand, the the app crashes if I attempt to use a ...
2
votes
2answers
234 views

EditText box contents into ListView on Android after clicking Button

Would like to see if someone can help me on figuring out how to add the contents of a EditText box into a ListView list on Android. I have a project I'm working on that, uses Barcode Scanner to scan a ...
2
votes
2answers
194 views

Android: tabactivity - content of all tabs gets overlapped at first

I was testing TabActivity with a list in each tab. While running the app, the contents of the tabs gets overlapped like this. After i click on the tabs the overlapping gets cleared. Here is my ...
2
votes
5answers
431 views

Activity crashes on setAdapter(ArrayAdapter);

Attempting to write my first ArrayAdapter for Android, failing miserably at the moment. It crashes on the setAdapter(adapter); line and throws a NullPointerException. ContractTestActivity: public ...
2
votes
2answers
444 views

How to use a custom ArrayAdapter in a separate class?

I have an inner class which extends ArrayAdapter in order to customize a ListView. I'd like to break this inner class out into a separate file so other classes can use it but having some trouble with ...
2
votes
1answer
561 views

Filter text and image in a custom listView with ArrayAdapter

When I use an ArrayList <ArrayList<String>>, the text is filtered, but the images don't appear correctly (the order of the images stays the same). When I use an ArrayList ...
2
votes
2answers
648 views

Custom Filtering ArrayAdapter in ListView

I am a begginer in Android but I tried to make a custom listview filtering and I it worked somehow. The only problem I have is that the ArrayList that I kept all the values ( "original" ArrayList ) , ...
2
votes
3answers
202 views

SimpleAdapter not showing data on GUI

This is the first android app I'm writing for the college I work at. It's basically a thin client that reads data from an xml on the site and prints it out to a List. I've ran into a strange problem ...
2
votes
1answer
924 views

How to add ArrayList<My class> in ArrayAdapter for spinner?

private ArrayAdapter spn_1; ArrayList<My Class> result; spn_1 = new ArrayAdapter(this, android.R.layout.simple_spinner_item, result); ...
2
votes
1answer
978 views

custom ArrayAdapter<new_class> get an error you must supply a resource id for a textview

here is the code get an error arrayadapter - you must supply a resource id for a textview public class lay extends Activity { public class MyCustomAdapter extends ArrayAdapter<new_class> { ...
2
votes
1answer
492 views

android AutoCompleteTextView seems to ignore the Filter of the custom ArrayAdapter

All I want to do is displaying a CheckBox at each result of the AutoCompleteTextView's results (which are strings). I wrote an custom Array Adapter which implements Filterable. I added a simple ...
2
votes
1answer
889 views

ListActivity with custom layout does not call getview

I have a ListActivity with a custom row layout. The row layout consists of a checkbox, a textview and an imagebutton. Behind this is an ArrayList of a custom object containing simply a String and a ...
2
votes
1answer
128 views

What is a good approach for a ListView that is updated regularly from a background thread and maintained across several activities?

First some background info and parameters of what I am looking for. The application has several activities that need access to a single list. I am using the Application class in order to maintain ...
2
votes
1answer
2k views

Update ArrayAdapter in Android

How do you update an ArrayAdapter without losing the scrolling position? This is how I currently do it. I create an update method in the ArrayAdapter subclass which does the following: public void ...
2
votes
3answers
2k views

Custom ArrayAdapter setBackground in getView

I'm working on a ListActivity which will display a bunch of numbers (weights). I would like to change the background of a specific row in the ListView. To do this I have created a custom ...

1 2 3 4 5 8