摘要: Android – Displaying Dialogs From Background Threads 判断一下Activity是否在finishing就好了,否则万一Activity销毁了,这个Dialog没有所依附的对象,就会有下面的异常抛出 private Handler myHandler 阅读全文
posted @ 2015-11-30 17:31 Matrix_Ran 阅读(1752) 评论(0) 推荐(0) 编辑
摘要: Activity的打开关闭或者说相互跳转之间可以设置动画的。默认的打开关闭直接消失或出现,比较不优美,但是有的手机Rom对这个默认做了修改,比如红米HM1,默认的就是新页面自右向左滑动出现,自左向右滑动消失。 设置动画有两种方法: 1。利用Activity的方法在代码中设置: public void 阅读全文
posted @ 2015-11-30 15:57 Matrix_Ran 阅读(5317) 评论(0) 推荐(0) 编辑
摘要: public void onWindowFocusChanged (boolean hasFocus) 参数hasFocus: the window of this activity has focus. 是指activity是否获取或失去了focus,获得到了该参数为true,否则为false。一 阅读全文
posted @ 2015-11-30 15:21 Matrix_Ran 阅读(6554) 评论(0) 推荐(0) 编辑