This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// SystemUI (status bar) layout policy | |
int shortSizeDp = shortSize | |
* DisplayMetrics.DENSITY_DEFAULT | |
/ DisplayMetrics.DENSITY_DEVICE; | |
if (shortSizeDp < 600) { | |
// 0-599dp: "phone" UI with a separate status & navigation bar | |
mHasSystemNavBar = false; | |
mNavigationBarCanMove = true; | |
} else if (shortSizeDp < 720) { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
find -name "*.mk" -print | xargs grep "LOCAL_MODULE" |
NewerOlder