Tagged Questions
31
votes
2answers
24k views
how to change color of Android ListView Seperator line?
Friends,
I want to change color of ListView separator line. Any help would be appreciated. Thanks!
17
votes
5answers
16k views
Android: Adding static header to the top of a ListActivity
Currently I have a class that is extending the ListActivity class. I need to be able to add a few static buttons above the list that are always visible. I've attempted to grab the ListView using ...
11
votes
2answers
7k views
Android - Activity vs. ListActivity - Which one should my activity class extend?
I've been learning to develop in Android and had more of a general question: If I have a layout that uses a list and some other views, should I be using Activity or ListActivity for my activity class?
...
10
votes
2answers
6k views
android simplecursoradapter not updating with database changes
I have an android list activity that is backed by a database cursor through a SimpleCursorAdapter.
When the items are clicked, a flag field in the coresponding row in the database is toggled and ...
6
votes
1answer
260 views
customizing listview component
I am trying to build a list view in android that would look like this (ignore the search-bar):
iPhone has a similar option called as section index :
I am able to get the sections within the list ...
6
votes
3answers
8k views
update Android ListActivity when list data changes
i want to know how to refresh the ListActivity when i change/add data to the list wich is dispayed.
i first thougt the ListAdapter would know when the list is changed but when i add elements to the ...
5
votes
1answer
2k views
ensure visible on android listview?
Is there a way that I can makle sure a given item in an android listview is entirely visible?
I'd like to be able to programmatically scroll to a specific item, like when I press a button for ...
4
votes
2answers
832 views
Android Swipe on List
Does anyone have a simple example of a ListActivity displaying Textviews in a column and when you swipe left to right you see that row in a new view? This would be to say edit the data for that row ...
4
votes
4answers
2k views
Identify the item clicked on ListActivity method onListItemClick
I'm developing an Android application.
I have several objects loaded on a ListActivity. I want to know the item clicked on event onListItemClick.
I see method onListItemClick has a parameter called ...
4
votes
2answers
9k views
Custom list clicking with checkboxes in Android
I've populated a ListActivity from a cursor using SimpleCursorAdapter that starts another activity when one of the list items have been clicked. I'm also using ViewBinder to do some custom ...
3
votes
2answers
102 views
Custom ListActivity with dynamic views for each row
I want to create custom row for ListActivity, each row contains Title and List Of SubTitles .
My question is : what is the best way to create these SubTitles? I cannot add these subTitles in row.xml ...
3
votes
2answers
158 views
How to change the color of list item using List Activity file
I have seen some links which am not able to trace it out.I am trying to change the color of the list item using java code in my activity class. Iam not using any Code for list view in my XML file. So, ...
3
votes
4answers
228 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
1answer
493 views
Edit Text in ListActivity ListView looses focus when keyboard comes up
I have searched and searched for an answer to this question and everything that looked like an answer has not worked so I guess I will just ask.
I have a couple of EditText boxes added to a ListView ...
3
votes
1answer
172 views
Strange behavior of ListActivity and Activity
I'm implementing an application for android and I run into memory issues while populating a list view with data from the internet. A strange error that occurs seems to be caused by the lack of ...
3
votes
4answers
760 views
nullPointer when findViewById() in SimpleCursorAdapter
I was using SimpleCursorAdapter with an xml file with some views defined in it:
<LinearLayout ...>
<ImageView android:id="@+id/listIcon" />
<TextView android:id="@+id/listText" ...
3
votes
1answer
720 views
Android - Paged ListActivity that pages on horizontal swipe
I have a list activity that implements Runnable so that my data fetch is done with a progress bar. The data is pulled from a web service. Right now, I go get all of the users, but I would like to ...
3
votes
4answers
2k views
AlertDialog cannot be shown from ListActivity within ActivityGroup
I am trying to show an AlertDialog when an item in a ListActivity is clicked. My app displays the ListActivity under a tab of a TabActivity, and the AlertDialog shows up no problem. The ListActivity ...
3
votes
2answers
1k views
Why is my activity crashing when hitting the home button?
At this point I'm quite frustrated. I've been researching this for a few days and cannot even isolate anything beyond a cursor problem. I am extending ListActivity and using ...
3
votes
2answers
1k views
changing background color of ListView disables highlight color
I've got a list of search results which are being shown in a ListActivity. When I change the background color of the ListActivity items, by changing the background color of the first LinearLayout ...
3
votes
3answers
395 views
Not able to get the clicked row number in list view of android
I am trying to build a simple sms app for which edit page lists all the saved smses. I gave 2 buttons in my layout for Edit and Delete but when I am clicking on them I am unable to get the rowid (row ...
3
votes
1answer
4k views
android: changing a divider with setDivider in a ListActivity without a custom ListView?
I can't seem to get a customized divider, using a Drawable I've defined, to work when using a ListActivity and not creating a custom ListView. It almost seems like when the VM creates its own ...
3
votes
1answer
1k views
Android: Draw custom border around listview?
I've got a ListActivity with a ListView in it. I need to draw a repeating image around the border ("on top of it (I guess after the listview is renderered))
How can I hook in my own drawing code ...
2
votes
1answer
36 views
What is the better way, keeping adapter as an inner class of activity or outside?
I want to check the better and faster way for program of using adapter for a ListView. Is it out or in activity class?
2
votes
1answer
67 views
Asynchronous update of a ListActivity
May I update a ListActivity after loading Content from an external XML ressource :/?
SUB() is ListActivity
Main() -> opening: SUB() -> updating from xml -> getting result -> updating ...
2
votes
1answer
157 views
Adding AdView to a class that extends ListActivity
I'm using AdMob for my Android apps. And I have wanted to add a AdView to an Activity that extends ListActivity.
I have tried using getListView().addHeaderView(my_ad_view) but that doesn't seem to ...
2
votes
1answer
74 views
Contextmenu not showing up in ListActivity
I'm using practically the same code in a different ListActivity, and it's working, but in this one it doesn't work.
This is the code for the context menu:
@Override
public void ...
2
votes
2answers
217 views
Android ListView Edge Fading works on a 2.2 virtual device but not on Samsung 2.2.1
On my ListActivity I get the fading edges effect when running on an Android 2.2 virtual device. However, when I use a Samsung GIO with Android 2.2.1 to run the exact same application, I get no ...
2
votes
3answers
305 views
ProgressDialog is not showing in my ListActivity's onListItemClick method
I have ListActivity with BaseAdapter. Each time an user clicks an item I clear the adapter and reload new content (it is some sort of tree logic).
Sometimes it takes several seconds that adapter ...
2
votes
2answers
820 views
Wrapping text using simple_list_item_multiple_choice
I'm using a SimpleCursorAdapter to display a single CheckedTextView. I know this is done best using simple_list_item_multiple_choice and android.R.id.text1.
adapter = new ...
2
votes
1answer
1k views
Android IntentService providing data back to Activity
I have a activity (ListActivity) in which if a user click on a button, I kick off an intent to a "IntentService" which basically makes a REST call to a web service and gathers data.
My problem is that ...
2
votes
1answer
336 views
ViewHolders for ListViews with different item layouts
I have ListView with 2 different types of layout: one with image and another without image. I try to do something like this. I override getView of BaseAdapter:
public View getView(int position, View ...
2
votes
1answer
604 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
1answer
764 views
onActivityResult not being called when ListActivity finishes
In a small app I'm working on, I need to be able to select a record from a database table.
In order to do that, I've created a subclass of ListActivity, GameListScreen, which displays the records, ...
2
votes
1answer
840 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
725 views
Get child view from a ListView within a ListActivity
I have a ListActivity with a ListView populated onStart with data from a database. Each row is a custom view. After the ListView is populated I want to select a specific row and edit it (for example ...
2
votes
2answers
1k views
Android ListView - onListItemClick does not work properly
I created a ListView in Android, and a corresponding ListActivity. Each individual item in the ListView has just one TextView (I plan to add an image and a CheckBox later).The ListActivity overrides ...
2
votes
1answer
2k views
Add buttons to a listactivity
I have a layout for a ListActivity. To modify the list I have used menu-options. But to remove a couple of "clicks" on the screen I'd like to add two buttons in the button of the screen that is always ...
2
votes
2answers
499 views
My Simple ListView app is leaking memory. What am I doing wrong?
First off, I did post this to the android google group first but its moderated and I'm not sure how long itll take to show up there so hoping someone here can help.
I created a simple app with a ...
2
votes
4answers
4k views
Android - findViewById(R.id.list) returns null
I have a class that is called when my app launches.
public class MainActivity extends Activity implements NetworkEvent.
In this situation,
list = (ListView) findViewById(R.id.list);
works ...
2
votes
2answers
750 views
Proper implementation of changing ListView data with CursorAdapter
I have a ListView populated via a CursorAdapter. I give my user the ability to alter the data in the list. For example, the user can mark a row as being unread (the data are messages).
Suppose my ...
2
votes
1answer
512 views
List Item (a view) order changes unexpextedly while (fast) scrolling in a ListView
I am new to android, and ended up (have to) ask a question here,
Let's make it simple, I simply want to make my own TextView-like
(MyView extends View),
this is my code:
public class MyView extends ...
2
votes
1answer
892 views
calling listactiviy from tabactivity in android
Is it possible to call listactivity through tab activity? Basically, I am developing an app with 3 tabs, for which I am using tabactivity. Furthermore, in one of the tabs I want a listview, so I have ...
2
votes
1answer
846 views
Generate Map<String,String> from POJO
I have a POJO, and a (currently not-yet-built) class that will return Lists of it. I'd like to automatically generate the code necessary for the POJO to be accessed as a Map. Is this a good idea, is ...
2
votes
1answer
603 views
Android, activity for each view mode? Or switch statements inside fewer Activity classes?
I know how to functionally do each of the following scenarios, my main question is which is the better design decision? Based on app size/speed and battery life and such.
So I will have several ...
2
votes
3answers
98 views
build this layout in xml?
I have a listActivity and wanted to create a list with the second layout (attached). What has any idea how to build this layout in xml?!
show imageAttached
2
votes
1answer
6k views
simple_list_item_2 in Android
after creating some menus with simple_list_item_1 (which worked very fine) I tried to replace this by simple_list_item_2, but my system throws around with exceptions...
Now I'm wondering how to ...
2
votes
1answer
779 views
Android ListActivity ArrayAdapter filtering with no physical keyboard?
I have a ListActivity based on an ArrayAdapter with setTextFilterEnabled set to true. This works fine on a device with a physical keyboard. When I start typing something on the keyboard, the items get ...
2
votes
3answers
9k views
Android: failed to setContentView when switching to ListActivity
[update] I got the error, which says "Your content must have a ListView whose id attribute is 'android.R.id.list'". Appearently nothing in my xml is ListView. But is that required?
This is an ...
2
votes
3answers
4k views
Android: How to have a shared menu in each (List) Activity without re-writing the overridden methods?
I know that Android provides some useful methods to be overridden in order to define a menu:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
menu.add(0, AIS, 0, "Activity Inventory ...