摘要:
正确的打Log方法:if (Log.isLoggable(TAG, Log.VERBOSE)) { Log.v(TAG, "Internal storage is ok."); } adb中setprop log.tag.CalendarProvider2 VERBOSECalenda... 阅读全文
摘要:
UTF-8不需要BOM来表明字节顺序,但可以用BOM来表明编码方式。字符"ZERO WIDTH NO-BREAK SPACE"的UTF-8编码是EF BB BF。所以如果接收者收到以EF BB BF开头的字节流,就知道这是UTF-8编码了。目前已经有很多的新版本软件已经支持BOM,但仍然有不少软件还不支持BOM。解决方法:用Notepad++打开这个文件,格式à以UTF-8无BOM格式存储保存文件... 阅读全文
摘要:
阅读全文
摘要:
/** * 参数: * 总时间 * 多久触发trick事件 */ new CountDownTimer(11*1000L,1*1000L) { @Override public void onTick(long millisUntilFinished) { ... 阅读全文
摘要:
1.去除用户到程序管理界面清楚数据的设置 android:allowClearUserData=”false” 阅读全文
摘要:
使用位置:res/drawable/*.xml <?xml version="1.0" encoding="utf-8"?> <!—Shape 详解 --> <layer-list xmlns:android="http://schemas.android.com/apk/res/android" > <item> <shape... 阅读全文
摘要:
通过 adb shell 登录到 nook shell 后,列目录的时候,如果有中文会乱码。这是因为 nook 输出是 utf8,而 windows的console 是系统缺少的,只能显示GBK编码。为了能正确显示中文:1.输入命令:chcp 650012.修改CMD窗口的属性:在标题栏右键->Properties->Font 栏->字体选择“Lucida Console”->确定->“只应用到当前窗口”切换回系统的编码:chcp 936 阅读全文
摘要:
设置监听端口:setprop service.adb.tcp.port 5555关闭监听端口:setprop service.adb.tcp.port -1添加一个监听:adbd假如我们有一根usb线连接,输入adb tcpip 5555设置连接的端口adb connect 手机IP:5555连接到手机,并监听adb usb 还可以这样回到usb模式【ps:只要重启所有的端口全部重置,尽情的折腾吧 !】 阅读全文
摘要:
android create project --target <target_ID> --name <project_name> --path <project_path> --activity <activity_name> --package <package_name_space> ps:假如系统配置了ant 可以用ant debug / ant release 编... 阅读全文
摘要:
100 Continue--the request can be continued. 101 Switch protocols--the server has switched protocols in an upgrade header. 200 OK-- the request was fulfilled. 201 Created--the request succes... 阅读全文