Skip to content

Instantly share code, notes, and snippets.

View joujiahe's full-sized avatar

Johnson Chou joujiahe

View GitHub Profile
@joujiahe
joujiahe / PhoneWindowManager.java
Created August 22, 2012 07:41
Android system ui definitions.
// 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) {
@joujiahe
joujiahe / find-content.sh
Created August 6, 2012 01:56
Tips for useful Linux commands.
find -name "*.mk" -print | xargs grep "LOCAL_MODULE"