Skip to content

Instantly share code, notes, and snippets.

View hackware1993's full-sized avatar

fangbing chen hackware1993

View GitHub Profile
@hackware1993
hackware1993 / gist:a5fa5dc1db19daa8ef0d351c8de33a69
Last active July 30, 2016 09:23
获取通知栏的高度的优雅办法
public static float getStatusBarHeight(Context context) {
Resources resources = context.getResources();
int statusBarHeightId = resources.getIdentifier("status_bar_height", "dimen", "android");
return resources.getDimension(statusBarHeightId);
}
@hackware1993
hackware1993 / gist:12edc1b6b21f5a6043389dcadb5c5db6
Last active July 30, 2016 09:24
在对话框弹出时自动弹出输入法
getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_VISIBLE);