I show a list of items in AlertDialog by using AlertDialog.Builder's setAdapter() method. The problem is, the list draws dividers at the bottom of items and the buttons in the dialog are also separated frorm the listview by a divider. Thus, I get two dividers between the last item in the list and buttons. Anyone has any idea how to tackle this?

link|improve this question

80% accept rate
feedback

1 Answer

Try setting

    android:fadingEdge="none" 

of your list view

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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