Chrome有一个Bug,就是一旦你不想存某个网站的保密后,下次你想存也没有的存了。 下面是恢复方法: If you’re a Google Chrome user and you’ve ever hit “Never for this site” by accident (or have girlfriend who does so consistently), it’s a little tricky finding out how to edit these “Save Password” exceptions. It’s pretty clear for Windows’ Chrome:A little snooping reveals that Chrome keeps its login information in a… Read More


http://www.android-x86.org/download http://osxdaily.com/2012/02/23/android-4-ics-virtualbox/ 早上玩了玩Android4.0的虚拟机,真的没有意思。测试还可以,但应用没有意思。学学Linux的时候再用一下可以。… Read More


It is always good practice to use the getExtennalFilesDir() method to find the location of the SD Card on an Android device.(Don’t fix using \sdcard). Because Android can run on a large number of devices with different specications, the location of the SD Card directory may not always be in /sdcard.… Read More


In String type we have several method valueOf static String valueOf(boolean b) static String valueOf(char c) static String valueOf(char[] data) static String valueOf(char[] data, int offset, int count) static String valueOf(double d) static String valueOf(float f) static String valueOf(int i) static String valueOf(long l) static String valueOf(Object obj) As we can see those method are… Read More


The simplest way to monitor device state changes is to create aBroadcastReceiver for each state you’re monitoring and register each of them in your application manifest. Then within each of these receivers you simply reschedule your recurring alarms based on the current device state. A side-effect of this approach is that your app will wake the… Read More


Android SDK 本身包含很多帮助开发人员设计、开发、测试和发布 Android 应用的工具,在本文中,我们将讨论 10 个最常用的工具。 #1: Eclipse ADT Eclipse ADT 是 Eclipse 平台下用来开发 Android 应用程序的插件。 #2: The SDK and AVD Manager 该工具包含很多重要的功能,包括管理不同的 Android SDK 版本(构建目标),你知道的 Android 的版本众多,API上有些兼容性问题。另外该工具还用于管理 Android 虚拟设备配置 (AVD) ,用来配置模拟器。 #3: Android Debug Bridge adb(Android Debug Bridge)是Android提供的一个通用的调试工具,借助这个工具,我们可以管理设备或手机模拟器的状态。 还可以进行以下的操作: 1、快速更新设备或手机模拟器中的代码,如应用或Android系统升级; 2、在设备上运行shell命令; 3、管理设备或手机模拟器上的预定端口; 4、在设备或手机模拟器上复制或粘贴文件; #4: Dalvik Debug Monitor Server DDMS 的全称是Dalvik Debug Monitor Service,它为我们提供例如:为测试设备截屏,针对特定的进程查看正在运行的线程以及堆信息、Logcat、广播状态信息、模拟电话呼叫、接收SMS、虚拟地理坐标等等。 #5:… Read More