2018年12月8日

Android:getContext().getSystemService()

摘要: 一、介绍 getSystemService是Android很重要的一个API,它是Activity的一个方法,根据传入的NAME来取得对应的Object,然后转换成相应的服务对象 二、语法 三、其他服务 阅读全文

posted @ 2018-12-08 11:10 迷途行者 阅读(1099) 评论(0) 推荐(0) 编辑

Android:如何获取屏幕的宽高

摘要: WindowManager wm = (WindowManager) getContext().getSystemService(Context.WINDOW_SERVICE); DisplayMetrics dm = new DisplayMetrics(); wm.getDefaultDisplay().getMetrics(dm); pm_w... 阅读全文

posted @ 2018-12-08 10:48 迷途行者 阅读(321) 评论(0) 推荐(0) 编辑

导航