Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

this is the activity

public void onListItemClick(ListView parent, View v,int position, long id) {
        String str;

        if (nRowSelected>=0) {
            View row=parent.getChildAt(nRowSelected);
            if (row!=null) {
                row.setBackgroundColor(0xFFFFFFFF);
            }
        }
        nRowSelected=position;

        v.setBackgroundColor(Color.GRAY);
    }//onListItemClick

this is my listview

        <ListView
            android:id="@android:id/list"
            android:layout_width="match_parent"
            android:layout_height="425dp" 
            >
        </ListView>

i need highlight single choice. i choose/focus row number 1. but when i scroll, the focus is more than one. the row focus in row 8 too

this is the capture

Image 1

and

Image2

how to fix that?

BR

Alex

share|improve this question

4 Answers

Add this to the xml:

android:cacheColorHint="#00000000"
share|improve this answer

You are fighting the way Adapter's recycle the row layouts... You need to extend your current Adapter and override getView() to highlight the correct row (and only the correct row).

At the most basic level it would look like:

public View getView(...) {
    View view = super.getView(...);

    if(position == mRowSelected) {
        view.setBackgroundColor(Color.GRAY);
    }
    else { // You must use a default case to "un-highlight" the reused layout
        view.setBackgroundColor(0xFFFFFFFF);
    }
    return view;
}
share|improve this answer
error in this line View view = super.getView(position, convertView, parent); The method getView(int, View, ViewGroup) is undefined for the type ListActivity @Sam – Alex belek Jan 22 at 6:20
You must extend an Adapter, like ArrayAdapter, to use getView(). What type of Adapter are you using? – Sam Jan 22 at 16:03

Replace your xml code with following::

<ListView
   android:id="@android:id/list"
   android:layout_width="match_parent"
   android:layout_height="425dp" 
   android:cacheColorHint="#00000000">
</ListView>
share|improve this answer
i put in Listview but still same error @AndroidLearner – Alex belek Jan 22 at 6:22

Hi Please see the below code might be help it is single choice selection example follow this it work good .

public class List17 extends ListActivity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

    // Use the built-in layout for showing a list item with a single
    // line of text whose background is changes when activated.
    setListAdapter(new ArrayAdapter<String>(this,
            android.R.layout.simple_list_item_activated_1, mStrings));
    getListView().setTextFilterEnabled(true);

    // Tell the list view to show one checked/activated item at a time.
    getListView().setChoiceMode(ListView.CHOICE_MODE_SINGLE);

    // Start with first item activated.
    // Make the newly clicked item the currently selected one.
    getListView().setItemChecked(0, true);
}

@Override
protected void onListItemClick(ListView l, View v, int position, long id) {
    // Make the newly clicked item the currently selected one.
    getListView().setItemChecked(position, true);
}

private String[] mStrings = Cheeses.sCheeseStrings;

}

This is list activity it does't matter that you have list view or list activity.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.