HomeSort by relevance Sort by last modified time
    Searched defs:mMaxIconSize (Results 1 - 3 of 3) sorted by null

  /frameworks/base/core/java/com/android/internal/view/menu/
ActionMenuItemView.java 58 private int mMaxIconSize;
84 mMaxIconSize = (int) (MAX_ICON_SIZE * density + 0.5f);
187 if (width > mMaxIconSize) {
188 final float scale = (float) mMaxIconSize / width;
189 width = mMaxIconSize;
192 if (height > mMaxIconSize) {
193 final float scale = (float) mMaxIconSize / height;
194 height = mMaxIconSize;
  /frameworks/support/v7/appcompat/src/android/support/v7/internal/view/menu/
ActionMenuItemView.java 65 private int mMaxIconSize;
87 mMaxIconSize = (int) (MAX_ICON_SIZE * density + 0.5f);
191 if (width > mMaxIconSize) {
192 final float scale = (float) mMaxIconSize / width;
193 width = mMaxIconSize;
196 if (height > mMaxIconSize) {
197 final float scale = (float) mMaxIconSize / height;
198 height = mMaxIconSize;
  /prebuilts/sdk/current/support/v7/appcompat/libs/
android-support-v7-appcompat.jar 

Completed in 47 milliseconds