Android 混淆代码总结
为了防止自己的劳动成果被别人窃取,混淆代码能有效防止被反编译,下面来总结以下混淆代码的步骤:1. 大家也许都注意到新建一个工程会看到项目下边有这样proguard-project.txt一个文件,这个对混淆代码很重要,如..【继续阅读全文】
View ArticleAndroid学习系列(1)--为App签名(为apk签名)
写博客是一种快乐,前提是你有所写,与人分享,是另一种快乐,前提是你有舞台展示,博客园就是这样的舞台。这篇文章是android开发人员的必备知识,是我特别为大家整理和总结的,不求完美,但是有用。1.签名的意义..【继续阅读全文】
View Articlezxing横竖屏问题完美解决,显示无拉伸(反之亦然)
在zxing开发中camera除了用到上述接口外还有一些参数设置 Camera.Parameters,这里主要在CameraConfigurationManagerw完成的,由于google源码zxing是横屏的,他在获取屏幕的时候在竖屏的时候自动转换为横屏,代码..【继续阅读全文】
View ArticleGoogle《Android性能优化》学习笔记
摘要:Google在Udacity上的《Android性能优化》在线课程详细介绍了该如何优化性能,这些课程是Google之前在Youtube上发布的Android性能优化典范专题课程的细化与补充。本文是对渲染、运算、内存、电量四个篇章的..【继续阅读全文】
View Article深入讲解Android中Activity launchMode
深入讲解Android中Activity launchModeAUG 16TH, 2015Android系统中的Activity可以说一件很赞的设计,它在内存管理上良好的设计,使得多任务管理在Android系统中运行游刃有余。但是Activity绝非启动展示在屏幕而..【继续阅读全文】
View Article[Android Pro] android 混淆文件project.properties和proguard-project.txt
参考文档:http://blog.csdn.net/xueyepiaoling/article/details/8202359转载自:http://glblong.blog.51cto.com/3058613/1263969在新版本的ADT创建项目时,混码的文件不再是proguard.cfg,而是project.propertie..【继续阅读全文】
View Article关于那些最好玩的户外APP合集下(适合资深驴友、牛逼设计狮、装逼攻城狮)
本文会陆续分享分析全国最好的30个户外APP(下载量均至少在30万级别以上),希望能给户外爱好者、Ui设计狮、户外APP开发攻城狮一些启示。关于那些最好玩的户外APP合集上(适合资深驴友、牛逼设计狮、装逼攻城..【继续阅读全文】
View Article如何使用v7新控件RecyclerView
Android学习之RecyclerView时间 2014-07-03 10:14:28 CSDN博客原文 http://blog.csdn.net/le_go/article/details/36628161主题 安卓开发RecyclerView是android-support-v7-21版..【继续阅读全文】
View ArticleOptimizing Java Code(Pro Android Apps Performance Optimization)
About the Author Hervé Guihot started learning about computers more than 20 years ago withan Amstrad CPC464. Although the CPC464 is most likely the reason why he stillappre..【继续阅读全文】
View Article滴滴打车:天价补贴背后的惊人秘密
滴滴跟Uber的大战正在硝烟弥漫,不仅让人想到2014年的补贴大战。)最近,滴滴跟Uber的大战正在硝烟弥漫,不仅让人想到2014年的补贴大战。滴滴和快的在2014年掀起的天价补贴大战,是中国互联网一个标杆性事件,以..【继续阅读全文】
View ArticleGetting Started With the NDK(Pro Android Apps Performance Optimization)
Getting Started With the NDK2.1 What Is In the NDK?2.2Mixing Java and C/C++ Code2.3 Creating the Makefiles2.4 implementing the Native Function2.5Compiling the Native Library2.6 Native Activit..【继续阅读全文】
View ArticleAdvanced NDK(Pro Android Apps Performance Optimization)
Advanced NDK 进阶3.1Assembly3.1.1 Greatest Common Divisor最大公约数3.1.2. Color Conversion 色彩转换3.1.3Parallel Computation of Average 并行计算平均值3.2 C Extensions3.2.1 Built-in Func..【继续阅读全文】
View ArticleUsing Memory Efficiently(Pro Android Apps Performance Optimization)
Using Maoemory Efficiently 高效使用内存4.1 A Word On Memory 4.2 Data Types4.2.1 Comparing Values 值的比较4.2.2 Other Algorithms4.2.3Sorting Arrays4.2.4 Defining Your Own Classes4.3 Accessing ..【继续阅读全文】
View ArticleMultithreading and Synchronization
Multithreading and Synchronization 多线程和同步 Chapter 1 introduced the concept of the main thread, or UI thread, in which most events are handled处理了大多数线程. Even tho..【继续阅读全文】
View ArticleBenchmarking And Profiling(性能评测和剖析)
Being able to measure performance is required针对性能进行度量 in order to determine whether optimizations are needed是否需要优化, and whether the optimizations actually improved ..【继续阅读全文】
View ArticleMaximizing Battery Life
Maximizing Battery Life7.1 Measuring Battery Usage测量电池用量7.2 Disabling禁用 Broadcast Receivers7.3 Networking网络7.4 Location 位置7.5 Sensors传感器7.6 Graphics图形7.7 Alarms提醒7.8WakeLocks保持..【继续阅读全文】
View ArticleGraphics
Graphics Quite often you’ll have to spend a lot of time defining琢磨 what your application should look like. Whether it is an e-mail application using standard Android widgets小..【继续阅读全文】
View Article查看APK的签名的方法
跳转原文 1、查看 keystore $ keytool -list -keystore debug.keystore 结果:Keystore type: JKSKeystore provider: SUNYour keystore contains 1 entryandroiddebugkey, Mar 21, 2013, Private..【继续阅读全文】
View ArticleRenderScript
9.1 Overview 概览 9.2 Hellow World 9.3 Hellow Rendering 9.4 Adding Variables to Script 脚本中添加变量  ..【继续阅读全文】
View ArticleAndroid 你应该知道的学习资源 进阶之路贵在坚持
国外教程网站国外个人博客值得逛的网站转载请标明出处: http://blog.csdn.net/lmj623565791/article/details/44754023; 本文出自:【张鸿洋的博客】最近比较忙,加上希望停下来整理些东西,所以blog的更新可能会..【继续阅读全文】
View Article