HomeSort by relevance Sort by last modified time
    Searched refs:mMaxItems (Results 1 - 6 of 6) sorted by null

  /frameworks/base/core/java/com/android/internal/view/menu/
IconMenuPresenter.java 38 private int mMaxItems = -1;
56 mMaxItems = -1;
74 boolean fits = (itemsToShow.size() == mMaxItems && childIndex < mMaxItems) ||
75 childIndex < mMaxItems - 1;
107 if (mMaxItems < 0) mMaxItems = menuView.getMaxItems();
109 final boolean needsMore = itemsToShow.size() > mMaxItems;
122 menuView.setNumActualItemsShown(needsMore ? mMaxItems - 1 : itemsToShow.size());
IconMenuView.java 61 private int mMaxItems;
135 mMaxItems = a.getInt(com.android.internal.R.styleable.IconMenuView_maxItems, 6);
173 return mMaxItems;
  /frameworks/support/v7/appcompat/src/android/support/v7/widget/
ActionMenuPresenter.java 65 private int mMaxItems;
108 mMaxItems = abp.getMaxActionButtons();
138 mMaxItems = ActionBarPolicy.get(mContext).getMaxActionButtons();
157 mMaxItems = itemCount;
431 int maxActions = mMaxItems;
  /packages/services/Car/car-ui-provider/src/android/car/ui/provider/
DrawerApiAdapter.java 76 private int mMaxItems;
140 mMaxItems = maxItems;
173 return mMaxItems >= 0 ? Math.min(mItems.size(), mMaxItems) : mItems.size();
234 return mMaxItems;
  /frameworks/base/core/java/android/widget/
ActionMenuPresenter.java 72 private int mMaxItems;
147 mMaxItems = abp.getMaxActionButtons();
174 mMaxItems = ActionBarPolicy.get(mContext).getMaxActionButtons();
193 mMaxItems = itemCount;
636 int maxActions = mMaxItems;
    [all...]
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 259 milliseconds