What is the modal selection selection mode?
问题 When setting the selection mode of my ListView to multiple, I came across this constant introduced in Android API level 11: CHOICE_MODE_MULTIPLE_MODAL. The JavaDoc didn't help me out much: public static final int CHOICE_MODE_MULTIPLE_MODAL The list allows multiple choices in a modal selection mode. What is a modal selection mode? Can't find it nowheres. 回答1: This is used to bring up an action mode (a.k.a., contextual action bar) when using action bars. You will see it in apps like Gmail: as