
Android
CalvinWang
C Sharp 学习讨论群:367470625
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
修改 apk 默认的安装位置(不需要 Root)
步骤如下:1. 执行:adb shell2. 执行:pm get-install-location这时应该输出为 0 默认的位置3. 执行:pm set-install-location 2设定默认安装到 SD Card0 [auto]: Let system decide the best location1 [interna原创 2014-10-12 02:00:49 · 2540 阅读 · 0 评论 -
关於 Parcelable 实作以及继承
看例子class Shape implements Parcelable { public int left; public int top; public int width; public int height; // CREATOR part is omitted protected Shape(Parcel in) { readFromParce翻译 2015-01-11 13:40:34 · 2455 阅读 · 0 评论