Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

highlighting the selected item in the listview in android

I am having 1 list view contactslist. I wrote the code for highlighting the selected item in the ListView. It is working. When I click on 1 item it is highlighting that item but the problem is if I click on other item it is highlighting that too. I want to highlight the selected item only. The previous selection will have to gone when I click on another item.

arg1.setBackgroundResource(R.drawable.highlighter); 

This is the code in the click listener using to highlight the selected item. plz help me.

Update
I'm setting the background of the rows in the adapter:

public int[] colors = new int[]{0xFFedf5ff, 0xFFFFFFFF};  public int colorPos;   [...] colorPos = position % colors.length;  row.setBackgroundColor(colors[colorPos]); 
like image 340
andro-girl Avatar asked May 02 '11 05:05

andro-girl


People also ask

How do you highlight items?

To highlight text using your mouse, position your cursor at the beginning of the text you want to highlight. Press and hold your primary mouse button (commonly the left button). While holding the mouse button, drag the cursor to the end of the text and let go of the mouse button.


1 Answers

ListViews by default don't have a choiceMode set (it's set to none), so the current selection is not indicated visually.

To change this, you just need to set the choiceMode attribute of your ListView to singleChoice.
If you'd like custom background for the selected items in your list, you should also set the listSelector attribute. There you can specify not only colors, but drawables (images, layer-/state-drawables).

<ListView android:id="@+id/my_list"         android:choiceMode="singleChoice"          android:listSelector="@android:color/darker_gray" /> 

If you don't use a ListView directly, but a ListActivity, then these attributes need to be set from code, so you should extend your activity's onCreate method with these lines:

getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE); getListView().setSelector(android.R.color.darker_gray); 

So if you were using a click listener to change the background of the selected row, remove that from your code, and use the proper method from above.

Reply to the update

If you set the background from your getView method, instead of using a static color, apply a state list drawable to the row background with duplicateParentState set to true. This way it will change its display based on the current state of the item: normal, focused, pressed, etc.

like image 152
rekaszeru Avatar answered Oct 03 '22 08:10

rekaszeru