Multiple selection in custom ListView with CAB

前端 未结 3 791
孤城傲影
孤城傲影 2020-11-28 21:43

After reading and try\'n\'error for days, I´m giving up and ask for help.

< edit > I am using ActionBarSherlock. < /edit >

What I want to achie

3条回答
  •  南方客
    南方客 (楼主)
    2020-11-28 22:41

    I think the easiest way is to apply

    android:background="android:attr/activatedBackgroundIndicator"

    To which ever layout is the one you will be clicking.

    This highlights the layout when selected using

    listView.setChoiceMode(ListView.CHOICE_MODE_MULTIPLE_MODAL);
    

    worked for me anyway

提交回复
热议问题