`
fonter
  • 浏览: 856693 次
  • 性别: Icon_minigender_1
  • 来自: 上海
社区版块
存档分类
最新评论
文章列表
One省电卫士是一款android电池保护软件,让您的android设备在一样的使用环境下,大大延长电量和待机时间,它通过调优系统内核、cpu优化、安全查杀死耗电进程、主动防御耗电应用,深度睡眠、调整WiFi参数、优化充电参数,快速 ...
前戏准备: 1. 搭建Eclipse Android开发环境 下载Eclipse, ADT, Android SDK, http://developer.android.com/sdk/index.html     2.  搭建cygwin环境 下载并安装cygwin。 这一步挺考验亲们的宽带状况。   3. 搭建NDK编译环境 下载Android NDK SDK,地址见:http://developer.android.com/sdk/ndk/index.html   重头戏开始了!  1. 为
android:allowTaskReparenting用来标记Activity能否从启动的Task移动到有着affinity的Task(当这个Task进入到前台时)——“true”,表示能移动,“false”,表示它必须呆在启动时呆在的那个Task里。 如果这个特性没有被设定,设定到<application>元素上的allowTaskReparenting特性的值会应用到Activity上。默认值为“false”。一 般来说,当Activity启动后,它就与启动它的Task关联,并且在那里耗尽它的整个生命周期。当当前的Task不再显示时,你可以使用这个特性来强 制Activity ...

GC_FOR_MALLOC

GC_FOR_MALLOC means that the GC was triggered because there wasn't enough memory left on the heap to perform an allocation. Might be triggered when new objects are being created. GC_EXPLICIT means that the garbage collector has been explicitly asked to collect, instead of being triggered by high w ...
Andbox 网址http://code.google.com/p/andbox 地址移到iAndbox http://code.google.com/p/iandbox   andbox被google关了,只因它不是开源的,我从重新创建iandbox,我将开放一些APP的源代码,它是一个应用套件,为了帮助用户更好的使用android,这有错?
The four attributes that you mention can be applied to a ProgressBar's style like so: style="?android:attr/progressBarStyleHorizontal"  The style constant android:progressBarStyleHorizontal is your typical incremental progress bar: While the other three are varying sizes of the same ...
句点符号 . 是通配符 ,  * 零次或多次,+ 一次或多次,? 零次或一次,{n} 恰好n次,{n,m} 从n到m次要记住,老是拿*当通配符,实际是 句号 . 是通配符     package test.function.excel; public class RegTest {  public static void main(String[] args) { ...
/** * ShellCommand.java runs commands as if in a native shell instance, and can return stdio. *  * Code by Kevin(at)TeslaCoil * Adapted by LouZiffer(at)SDX *  * Example usage (use cmd.su.runWaitFor instead of cmd.sh.runWaitFor to run as su): * * ShellCommand cmd = new ShellCommand(); * CommandResult ...
安安任务管理是一款android任务管理软件,可通过手动或自动优化内存和结束进程,它内嵌目前最好的内存释放内核,可以让你的手机在打开许多应用依能顺畅运行,还能查看CPU占用和禁用软件等。 3.0版本支持以下特点: 1、支持九宫格显示 2、支持cyanogenMod Rom的长按设置 3、内嵌目前最好的内存释放内核 4、查看CPU占用,禁用软件 5、适配android的更多版本(1.5、1.6、2.1、2.2、2.3),支持cyanogenMod Rom 6、查看日志 7、支持高级模式,结束系统进程 8、支持白名单模式 9、支持查看每个应用的流量   下载:http://code.googl ...
AndMemory is an android memory optimization software,It can be manually or automatically optimize memory and end the processes,It is the best memory management software for freeing memory,can make your phone run smoothly when you run many apps. 安安内存管理器是一款android内存优化软件,可通过手动或自动优化内存和结束进程,它是目前释放内存最好的an ...
      经过去年一年的实践,预测今年将是android应用普及年和android安全年。       1、Android应用种类将更加丰富,各种应用终端将得到普及,包括视频电话,平板电脑,电子阅读器,电子设备等,这此都将搭载android系统销售给用户。       2、Android开发者将能获得更多的收入,Android Market 将支持更多的支付工具,新企业在跃跃欲试进入Market应用商城。       3、Android系统安全和用户信息安全将面临更多的挑战,获取用户信息木马,植入非法进程,修改用户资料等威胁将会更多,更多系统漏洞会被发现等。         观点:谁 ...
  下载Android安安软件请到:http://code.google.com/p/andbox     Android混淆现在在新的SDK开发工具下变得非常容易,只能说android sdk已很强大了,记得之前写过一篇文章《android混淆(Obfuscate)》 用ant来混淆,非常麻烦,现在SDK只需在你的工程下找到default.properties  文件,并加一句   proguard.config=proguard.cfg   proguard.cfg 文件在你创建工程就自动生成了,你可以在proguard.cfg修改不混淆或混淆的过滤条件。 至于生成AP ...
下载Android安安软件请到:http://code.google.com/p/andbox cat /proc/meminfo   MemTotal:       507480 kBMemFree:         10800 kBBuffers:         34728 kBCached:          98852 kBSwapCached:        128 kBActive:         304248 kBInactive:        46192 kBHighTotal:           0 kBHighFree:            0 kBLow ...
下载Android安安软件请到:http://code.google.com/p/andbox   转自:http://zeaster.blogspot.com/2007/11/how-to-decompile-dex-file-on-android_28.html   Lucky to see the Google Android build-in Contacts is also developed by Android SDK.This article will take it for example and discuss these How-To's:1 How to find ...
下载Android安安软件请到:http://code.google.com/p/andbox          JNI是Java Native Interface的缩写,译为Java本地接口。它允许Java代码和其他语言编写的代码进行交互。在android中提供JNI的方式,让Java程序可以调用C语言程序。android中很多Java类都具有native接口,这些接口由本地实现,然后注册到系统中。       主要的JNI代码放在以下的路径中:frameworks/base/core/jni/,这个路径中的内容被编译成库libandroid_runtime.so,这是个普通的动态库,被 ...
Global site tag (gtag.js) - Google Analytics