android 事件
yunzhonghe5786
这个作者很懒,什么都没留下…
展开
-
Android 闪退后重启方案
参考:http://blog.csdn.net/cym_lmy/article/details/24704089 1、Application 中定义 注意:Application 需要首先配置 public class MyApp extends Application { public static MyApp app; public static Context contex转载 2016-10-26 14:39:01 · 5321 阅读 · 0 评论 -
事件分发机制(二)
1、自定义布局控件public class CustomLayout extends LinearLayout { @Override public boolean onInterceptTouchEvent(MotionEvent ev) { //intercept 拦截 return true; //touch事件拦截,子事件无法响应 ret原创 2016-09-29 20:05:55 · 243 阅读 · 0 评论 -
Android 开机自启动
开启重启广播接收者 需要权 限:android.permission.RECEIVE_BOOT_COMPLETED * * <receiver android:name=".receiver.BootCompleteReceiver" > <intent-filter> * <action android:name="android.intent.action.BOOT_COMPLETED原创 2016-06-25 10:49:42 · 312 阅读 · 0 评论 -
Android 手势滑动
mDetector = new GestureDetector(this, new GestureDetector.SimpleOnGestureListener() { /** * 快速滑动,抛 e1: 起点坐标 e2: 终点坐标 velocityX: 水平滑动速度 velocityY:原创 2016-06-23 21:13:51 · 269 阅读 · 0 评论 -
Activity 切换动画
startActivity(new Intent(this, Setup2Activity.class)); finish(); // 两个activity之间切换的动画, 应该放在finish之后运行 overridePendingTransition(R.anim.anim_in, R.anim.anim_out);1、进入动画 anim_in<?原创 2016-06-23 20:40:46 · 229 阅读 · 0 评论 -
动画 Android
1、旋转动画RotateAnimation ra = new RotateAnimation(0,360,RotateAnimation.RELATIVE_TO_SELF,0.5f,RotateAnimation.RELATIVE_TO_SELF,0.5f);2、透明动画 AlphaAnimation aa = new AlphaAnimation(0, 1);3、缩放动画 ScaleAnima原创 2017-01-15 11:23:23 · 224 阅读 · 0 评论 -
Touch 事件分发
View : dispatch TouchEvent (分发) //默认为false,ViewGroup: onInterceptTouchEvent (拦截) 秘书 //默认为false , 不拦截,将事件传递给孩子1、如果是自定义复合控件,如图片+文字,我再Activity里给你注册了onClick监听,期望点击它执行。那么最简单的方法就是将图片+文字的父布局,也即让其容器ViewGro原创 2017-01-19 12:15:01 · 248 阅读 · 0 评论