You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can disable the select event, for that use setOnSegmentSelectRequestListener method, and return false if you do not want to perform the select event
publicinterfaceOnSegmentSelectRequestListener<D> {
/** * The event will be triggered before perform segment selection,and after segment click event * * @param segmentViewHolder, clicked segment view holder * @return false segment selection will be ignored, true segment selection will be performed*/
boolean onSegmentSelectRequest(SegmentViewHolder<D> segmentViewHolder);
}
how to disable select and click??
The text was updated successfully, but these errors were encountered: