Using Touch Gestures手势检测监听touch事件根据当前及历史touch事件,判断是否符合支持的手势使用MotionEventCompat的辅助方法从MotionEvent类中读取信息,使用GestureDetectorCompat进行兼容性的手势检测MotionEvent类包含了触点id(多点触控支持),位置,压力等众多信息,用于进行手势检测使用GestureDetector/GestureDetectorCompat类进行手势检测,传入Gestu…
Designing for Multiple Screens支持不同屏幕尺寸layout中尽量使用wrap_content或match_parent,而不是固定的数值资源文件可以定义不同的Qualifier,根据屏幕尺寸(dp值,最小宽高dp值,large等),dpi级别,屏幕朝向等等Nine-patch BitmapsAdding the App Bar使用Toolbar,setSupportActionBar设置tool bar,getSupportActionBar可以返回一个ActionBar对象(尽管设…