Material Design 中文版-Introduction(概述) Android
概述 我们挑战自我,为用户创造了崭新的视觉设计语言。与此同时,新的设计语言除了遵循经典设计定则,还汲取了最新的科技,秉承了创新的设计理念。这就是原质化设计(Material Design)。这份文档是动态更新的,将会随着我们对 Materi...
标签: android
android SQLite数据库的简单用法 Android
在android平台上使用的是嵌入式关系型数据库SQLite,SQLite3支持NULL、INTEGER、REAL(浮点数字)、TEXT(文本)、BLOB(二进制对象)数据类型。但实际上它也接受varchar(n)、char(n)等数据类型...
标签: android
Android提权漏洞分析——rageagainstthecage Android
Android adb setuid提权漏洞由Sebastian Krahmer在2010年公布,并发布利用工具RageAgainstTheCage (rageagainstthecage-arm5.bin)。该工具被广泛用于SuperOneClick、z4root等root工具
标签: android
android中解析doc、docx、xls、xlsx格式文件 Android
解析doc,要tm-extractors-0.4.jar这个包解析xls,要jxl.jar这个包下载jxl.jar public static String readDOC(String path) {
// 创建输入流读取doc文件
标签: android
AsyncTask Android
转载自http://www.cnblogs.com/xiaoluo501395377/p/3430542.html本篇随笔将讲解一下Android的多线程的知识,以及如何通过AsyncTask机制来实现线程之间的通信。一、And
标签: android
Developing for Android, III: The Rules: Performance Android
On Android, performance and memory are closely intertwined, since the memory footprint of the overall system can affect the performance of all of the processes, and since the garbage collector can h
标签: android
Developing for Android, IV: The Rules: Networking Android
This section covers practices around network behavior of applications.Don’t Over-SyncSending data to and from the cloud is one of the largest consumers of battery. The problem is not that
标签: android
Android入门——电话拨号器和四种点击事件 Android
相对于HelloWorld来说,电话拨号器也是Android的一个入门demo,从这个例子我们要理清楚做安卓项目的思路。 大体分为三步: 1.理解需求,理清思路 2
标签: android
Android webview中打印DomTree和RenderTree的方法 Android
Android webview中打印DomTree和RenderTree的方法
Android 4.4以前的在framework层提供了提供了打印网页DomTree和RenderTree的方法。但是应用中一般没办法调用到这个API
标签: android
Android屏幕兼容,图片的使用 Android
首先说点无关的google推荐图片用dp,文字用px,但是一旦出现小米等可以调整字体大小的手机,且应用受影响时,悲剧发生,文字的缩放极有可能影响布局,悲催。。。 本文写的会很朴实。。。 px为像素,像手机的480*800,720*1280等...
标签: android