XiaoKL

随笔分类 -  Android

1 2 下一页

Security.ssl-pinning
摘要:SSL Pinning 1. What's SSL Pinning? "SSL Pinning is making sure the client checks the server’s certificate against a known copy of that certificate. Si 阅读全文

posted @ 2018-03-14 20:58 XiaoKL 阅读(287) 评论(0) 推荐(0) 编辑

Security.website-that-focus-on-mobile-app-security
摘要:Mobile App Security 1. DATA THEOREM LAB https://datatheorem.github.io/ Data Theorem's technical blog about mobile security and privacy. 2. Android安全中文 阅读全文

posted @ 2016-10-25 12:12 XiaoKL 阅读(303) 评论(0) 推荐(0) 编辑

Android.技术站点
摘要:总结Android相关的技术站点和blog 1. http://android-developers.blogspot.com/ 首推这个blog,有时间需要每篇blog读一遍。 2. nlopez http://nlopez.io 3. Famous Blog in Android Applica 阅读全文

posted @ 2015-07-11 19:14 XiaoKL 阅读(232) 评论(0) 推荐(0) 编辑

Android.PackageManager
摘要:1. Apk的安装和更新过程是怎样的呢?Ref[1]2. 在安装.apk程序包时, .so是如何选择并安装的?这里的选择是指,是如何根据CPU_ABI和CPU_ABI2的值来选择合适的.so的。Ref [2]最近遇到ZTE V975这款机型,它的CPU_ABI和CPU_ABI2值如下:CPU_ABI... 阅读全文

posted @ 2015-03-25 22:51 XiaoKL 阅读(457) 评论(0) 推荐(0) 编辑

Java.Annotations
摘要:Annotation 0. Annotation Tricks http://developer.android.com/reference/java/lang/annotation/Annotation.html 0.1 Annotation 接口 "Defines the interface i 阅读全文

posted @ 2015-03-12 12:05 XiaoKL 阅读(781) 评论(0) 推荐(1) 编辑

Android.Tools.Eclipse hangs at the Android SDK Content Loader
摘要:Eclipse hangs at the Android SDK Content Loaderhttp://stackoverflow.com/questions/13489141/eclipse-hangs-at-the-android-sdk-content-loader 阅读全文

posted @ 2015-03-04 16:47 XiaoKL 阅读(117) 评论(0) 推荐(0) 编辑

Android.FamousBlogs
摘要:1.cyrilmottierhttp://cyrilmottier.com/http://cyrilmottier.com/about/2.greenrobothttp://greenrobot.me/翻译了很多比较优秀的Blog文章,不过好像是刚刚开始。3. To Be a Guru for An... 阅读全文

posted @ 2014-12-31 15:44 XiaoKL 阅读(375) 评论(0) 推荐(0) 编辑

Android.API.Context.getFilesDir()
摘要:1. Context.getFilesDir()http://developer.android.com/reference/android/content/Context.html#getFilesDir()"Returns the absolute path to the directory o... 阅读全文

posted @ 2014-12-31 13:49 XiaoKL 阅读(2577) 评论(0) 推荐(0) 编辑

Android.Tools.Ant
摘要:ant1. ant手册翻译ant手册翻译是一项大工程!!!!!!ant在线手册的链接好不明确。2. ant 支持for循环安装ant-contrib Ref[1.1]. 要在ant的build.xml脚本中支持,参考链接Ref[1.2]。下面的build.xml是遍历txt文件,将每一行进行输出的a... 阅读全文

posted @ 2014-12-14 00:18 XiaoKL 阅读(220) 评论(0) 推荐(0) 编辑

Android.StructureOfAndroidSourceCodeRootTree
摘要:Refference1.How to understand the directory structure of android root tree?http://stackoverflow.com/questions/9046572/how-to-understand-the-directory-... 阅读全文

posted @ 2014-11-11 18:40 XiaoKL 阅读(167) 评论(0) 推荐(0) 编辑

Android.Tools.Summary
摘要:Android平台上工具的总结每个工具的详细使用和深入理解参考每个工具相关的blog。1. Android SDK中提供的工具http://developer.android.com/tools/help/index.html2. aapt 工具的source codeaapt: Android A... 阅读全文

posted @ 2014-11-11 00:06 XiaoKL 阅读(194) 评论(0) 推荐(0) 编辑

Android.HowToDesignPluginArchitectureInAndroidApp
摘要:There is a tools called "dx", this tool can transfer Java Binary Code into Android Dalvik Binary code.In Android, Java Binary Code cannot be recognize... 阅读全文

posted @ 2014-10-22 11:49 XiaoKL 阅读(240) 评论(0) 推荐(0) 编辑

Java.WeakReference-SoftReference-PhantomReference
摘要:Weak Reference, Soft Reference, Phantom Reference 1. Introduction "Weak reference objects, which do not prevent their referents from being made finali 阅读全文

posted @ 2014-10-20 16:13 XiaoKL 阅读(330) 评论(0) 推荐(0) 编辑

Android.HowToDefineCustomView
摘要:Custom ViewErrorsE1 在使用自定义CustomView时,出现以下runtime error:Android.View.InflateException: Binary XML File Line #LineNumberSolution: 自定义的View 子类(例如,类名为: F... 阅读全文

posted @ 2014-10-08 16:04 XiaoKL 阅读(119) 评论(0) 推荐(0) 编辑

Android.Study.Question
摘要:1. NullPointerException1.1 发生该异常的原因。1.2 解决方法有哪几种? try-catch2. Eclipse 中debug/run 两个模式,run 是release模式吗?(类比 iOS的开发)3. listview 卡顿的优化方向有哪些?4. traceview ... 阅读全文

posted @ 2014-09-25 17:28 XiaoKL 阅读(126) 评论(0) 推荐(0) 编辑

Android.PublishApplication
摘要:发布应用3. 为App签名Android 要求App在安装前,需要使用证书(certificate)来进行数字签名(be digitally signed).Android 用证书来标识一个App的作者或者开发商。该证书不需要由证书管理机构(certificate authority)来签发。And... 阅读全文

posted @ 2014-09-18 23:38 XiaoKL 阅读(663) 评论(0) 推荐(0) 编辑

Android.Libraries
摘要:1.Android Dependencies,Referenced Libraries,Android Private LibrariesAndroid Private Libraries- Android libraries allows one to store source code and ... 阅读全文

posted @ 2014-09-09 16:53 XiaoKL 阅读(314) 评论(0) 推荐(0) 编辑

Android.DebugOnDevices
摘要:真机调试Androidhttp://www.cnblogs.com/junqilian/archive/2012/11/08/2760734.html 阅读全文

posted @ 2014-09-03 17:49 XiaoKL 阅读(105) 评论(0) 推荐(0) 编辑

Android.DebugTools.Traceview & dmtracedump
摘要:1. Android 调试工具之Traceviewhttp://www.cnblogs.com/devinzhang/archive/2011/12/18/2291592.htmlTraceView是性能分析工具。类似Xcode中的Timer instrument。http://www.cnblog... 阅读全文

posted @ 2014-09-01 11:20 XiaoKL 阅读(155) 评论(0) 推荐(0) 编辑

Android.ApplicationCrash
摘要:1. 如何调试分析Android中发生的tombstonehttp://www.360doc.com/content/12/1017/10/7580194_241974419.shtmltombstone一般是由Dalvik错误,状态监视调试器,C代码以及libc的一些问题导致的。Android T... 阅读全文

posted @ 2014-08-31 17:21 XiaoKL 阅读(183) 评论(0) 推荐(0) 编辑

1 2 下一页

导航


点击右上角即可分享
微信分享提示