test
上一页 1 2 3 4 5 6 7 8 9 ··· 24 下一页
摘要: 一、隐式意图介绍显式意图我们前面已经提到,形如:Intent intent = new Intent();intent.setClass(this,Other.class);//此句表示显式意图,因为明确设置激活对象为Other类startActivity(intent);顾名思义,隐式意图就是在不... 阅读全文
posted @ 2015-02-09 11:18 Lechance 阅读(8049) 评论(0) 推荐(0) 编辑
摘要: Android提供了Invalidate方法实现界面刷新,但是Invalidate不能直接在线程中调用,因为他是违背了单线程模型:Android UI操作并不是线程安全的,并且这些操作必须在UI线程中调用。invalidate()是用来刷新View的,必须是在UI线程中进行工作。比如在修改某... 阅读全文
posted @ 2015-02-05 12:04 Lechance 阅读(482) 评论(0) 推荐(0) 编辑
摘要: 在开发过程中我们希望看到textview中内容过长的话自动换行,但是调用measureText函数时发现返回值很不准确,单位也不确定,是pixel还是dip,都不准。后来想起textview中有个内容过长加省略号的属性,即ellipsize,可以较偷懒地解决这个问题,哈哈~用法如下:在xml中... 阅读全文
posted @ 2015-02-05 11:47 Lechance 阅读(601) 评论(0) 推荐(0) 编辑
摘要: 为什么这个layout_alignStart比layout_alignRight和layout_toLeftOf更好?新增的参数主要是为了适配一些从右到左阅读习惯的地区。比如你要适配阿拉伯语的时候,start就代表右边,中文就是左边。也就是说当我用start来设定的时候,如果显示的汉... 阅读全文
posted @ 2015-02-05 11:42 Lechance 阅读(269) 评论(0) 推荐(0) 编辑
摘要: 在SDK11之前请使用android.text.ClipboardManagerJava代码importandroid.text.ClipboardManager;……ClipboardManagerclipboardManager=(ClipboardManager)getSystemServic... 阅读全文
posted @ 2015-02-05 10:51 Lechance 阅读(485) 评论(0) 推荐(0) 编辑
摘要: android:persistentDrawingCache (Google官方译文)Defines the persistence of the drawing cache. The drawing cache might be enabled by a ViewGroup for all its... 阅读全文
posted @ 2015-02-05 09:56 Lechance 阅读(209) 评论(0) 推荐(0) 编辑
摘要: 搞了半天android,竟然对external下的库一无所知?不能容忍!马上解决:android-mock:编译为java静态库。说明:Android Mock is a framework for mocking interfaces and classes on the Dalvik VM。资料... 阅读全文
posted @ 2015-02-05 08:44 Lechance 阅读(270) 评论(0) 推荐(0) 编辑
摘要: ##### ERROR stack traceorg.broadinstitute.sting.utils.exceptions.ReviewedStingException: An error occurred during the traversal.Message=GC overhead li... 阅读全文
posted @ 2015-02-04 14:43 Lechance 阅读(395) 评论(0) 推荐(0) 编辑
摘要: 1:Application是什么? Application和Activity,Service一样,是android框架的一个系统组件,当android程序启动时系统会创建一个 application对象,用来存储系统的一些信息。通常我们是不需要指定一个Application的,这时系统会自动... 阅读全文
posted @ 2015-02-04 09:45 Lechance 阅读(998) 评论(0) 推荐(0) 编辑
摘要: 1. OnLowMemory() OnLowMemory()是Android提供的API,在系统内存不足,所有后台程序(优先级为background的进程,不是指后台运行的进程)都被杀死时,系统会调用OnLowMemory。系统提供的回调有:Application/Activity/Fragem... 阅读全文
posted @ 2015-02-04 09:33 Lechance 阅读(231) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 24 下一页