本文整理匯總了Java中com.mikepenz.materialdrawer.model.interfaces.Selectable類的典型用法代碼示例。如果您正苦於以下問題:Java Selectable類的具體用法?Java Selectable怎麽用?Java Selectable使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
Selectable類屬於com.mikepenz.materialdrawer.model.interfaces包,在下文中一共展示了Selectable類的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: onFooterDrawerItemClick
import com.mikepenz.materialdrawer.model.interfaces.Selectable; //導入依賴的package包/類
/**
* helper method to handle the onClick of the footer
*
* @param drawer
* @param drawerItem
* @param v
* @param fireOnClick true if we should call the listener, false if not, null to not call the listener and not close the drawer
*/
public static void onFooterDrawerItemClick(DrawerBuilder drawer, IDrawerItem drawerItem, View v, Boolean fireOnClick) {
boolean checkable = !(drawerItem != null && drawerItem instanceof Selectable && !((Selectable) drawerItem).isSelectable());
if (checkable) {
drawer.resetStickyFooterSelection();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
v.setActivated(true);
}
v.setSelected(true);
//remove the selection in the list
drawer.getAdapter().deselect();
//find the position of the clicked footer item
if (drawer.mStickyFooterView != null && drawer.mStickyFooterView instanceof LinearLayout) {
LinearLayout footer = (LinearLayout) drawer.mStickyFooterView;
for (int i = 0; i < footer.getChildCount(); i++) {
if (footer.getChildAt(i) == v) {
drawer.mCurrentStickyFooterSelection = i;
break;
}
}
}
}
if (fireOnClick != null) {
boolean consumed = false;
if (fireOnClick && drawer.mOnDrawerItemClickListener != null) {
consumed = drawer.mOnDrawerItemClickListener.onItemClick(v, -1, drawerItem);
}
if (!consumed) {
//close the drawer after click
drawer.closeDrawerDelayed();
}
}
}
示例2: onFooterDrawerItemClick
import com.mikepenz.materialdrawer.model.interfaces.Selectable; //導入依賴的package包/類
/**
* helper method to handle the onClick of the footer
*
* @param drawer
* @param drawerItem
* @param v
* @param fireOnClick true if we should call the listener, false if not, null to not call the listener and not close the drawer
*/
public static void onFooterDrawerItemClick(DrawerBuilder drawer, IDrawerItem drawerItem, View v, Boolean fireOnClick) {
boolean checkable = !(drawerItem != null && drawerItem instanceof Selectable && !((Selectable) drawerItem).isSelectable());
if (checkable) {
drawer.resetStickyFooterSelection();
if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.HONEYCOMB) {
v.setActivated(true);
}
v.setSelected(true);
//remove the selection in the list
drawer.getAdapter().handleSelection(null, -1);
//set currentSelection to -1 because we selected a stickyFooter element
drawer.mCurrentSelection = -1;
//find the position of the clicked footer item
if (drawer.mStickyFooterView != null && drawer.mStickyFooterView instanceof LinearLayout) {
LinearLayout footer = (LinearLayout) drawer.mStickyFooterView;
for (int i = 0; i < footer.getChildCount(); i++) {
if (footer.getChildAt(i) == v) {
drawer.mCurrentStickyFooterSelection = i;
break;
}
}
}
}
if (fireOnClick != null) {
boolean consumed = false;
if (fireOnClick && drawer.mOnDrawerItemClickListener != null) {
consumed = drawer.mOnDrawerItemClickListener.onItemClick(v, -1, drawerItem);
}
if (!consumed) {
//close the drawer after click
drawer.closeDrawerDelayed();
}
}
}