android.widget.AbsListView.MultiChoiceModeListener Java Examples

The following examples show how to use android.widget.AbsListView.MultiChoiceModeListener. You can vote up the ones you like or vote down the ones you don't like, and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: StickyListHeadersListView.java    From Swface with Apache License 2.0 4 votes vote down vote up
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public void setMultiChoiceModeListener(MultiChoiceModeListener listener) {
    if (requireSdkVersion(Build.VERSION_CODES.HONEYCOMB)) {
        mList.setMultiChoiceModeListener(listener);
    }
}
 
Example #2
Source File: StickyListHeadersListView.java    From o2oa with GNU Affero General Public License v3.0 4 votes vote down vote up
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public void setMultiChoiceModeListener(MultiChoiceModeListener listener) {
    if (requireSdkVersion(Build.VERSION_CODES.HONEYCOMB)) {
        mList.setMultiChoiceModeListener(listener);
    }
}
 
Example #3
Source File: StickyListHeadersListView.java    From StickyListHeadersWithRefreshAndLoadMore with Apache License 2.0 4 votes vote down vote up
@TargetApi(Build.VERSION_CODES.HONEYCOMB)
public void setMultiChoiceModeListener(MultiChoiceModeListener listener) {
    if (requireSdkVersion(Build.VERSION_CODES.HONEYCOMB)) {
        mList.setMultiChoiceModeListener(listener);
    }
}
 
Example #4
Source File: TrackSelectionAdapterWrapper.java    From ticdesign with Apache License 2.0 4 votes vote down vote up
public void setWrapped(MultiChoiceModeListener wrapped) {
    mWrapped = wrapped;
}