07 2018 档案

摘要://set集合去重,不改变原有的顺序 public static void pastLeep1(List list){ System.out.println("list = [" + list.toString() + "]"); List listNew=new ArrayList(); Set set=new HashSet(); ... 阅读全文
posted @ 2018-07-28 11:49 行走的思想 阅读(2769) 评论(0) 推荐(0) 编辑
摘要:写文件到sd卡中,会报权限问题,需要动态申请申请运行时权限 1. MainActivity.java 2.AndroidManifest.xml 阅读全文
posted @ 2018-07-27 16:51 行走的思想 阅读(405) 评论(0) 推荐(0) 编辑
摘要:adb shell stop adb shell start 阅读全文
posted @ 2018-07-21 10:40 行走的思想 阅读(398) 评论(0) 推荐(0) 编辑
摘要:aptitude 与 apt-get 一样,是 Debian 及其衍生系统中功能极其强大的包管理工具。与 apt-get 不同的是,aptitude 在处理依赖问题上更佳一些。举例来说,aptitude 在删除一个包时,会同时删除本身所依赖的包。这样,系统中不会残留无用的包,整个系统更为干净。比如: 阅读全文
posted @ 2018-07-20 13:10 行走的思想 阅读(787) 评论(0) 推荐(0) 编辑
摘要:https://hujiaweibujidao.github.io/blog/2016/05/20/learning-git-by-animations/ http://learngitbranching.js.org/?demo 非常棒的教程 https://github.com/pcottle/ 阅读全文
posted @ 2018-07-19 13:32 行走的思想 阅读(128) 评论(0) 推荐(0) 编辑
摘要:转自:http://gityuan.com/2017/07/11/android_debug/ 一. 获取Trace 调用栈信息(Trace)是分析异常经常使用的,这里简单划分两类情况: 当前线程Trace: 当前执行流所在线程的调用栈信息; 目标进程Trace:可获取目标进程的调用栈,用于动态调试 阅读全文
posted @ 2018-07-19 13:21 行走的思想 阅读(724) 评论(0) 推荐(0) 编辑
摘要:Android O 8.0 1.src\com\android\packageinstaller\permission\mode\PermissionGroups.java 2.PermissionApps.java 3. src\com\android\packageinstaller\permi 阅读全文
posted @ 2018-07-15 13:05 行走的思想 阅读(1906) 评论(0) 推荐(0) 编辑
摘要:打开一个文件夹,直接阅读,体验还不错 版本: 1.25.1提交: 1dfc5e557209371715f655691b1235b6b26a06be日期: 2018-07-11T15:43:11.471ZElectron: 1.7.12Chrome: 58.0.3029.110Node.js: 7.9 阅读全文
posted @ 2018-07-15 11:14 行走的思想 阅读(589) 评论(0) 推荐(0) 编辑
摘要:packageinstaller\permission\model\PermissionApps.java /** * Class used to reduce the number of calls to the package manager. * This caches app informa 阅读全文
posted @ 2018-07-15 11:00 行走的思想 阅读(330) 评论(0) 推荐(0) 编辑
摘要:private int mFlags; public void setUserFixed(boolean userFixed) { if (userFixed) { mFlags |= PackageManager.FLAG_PERMISSION_USER_FIXED; } else { mFlag 阅读全文
posted @ 2018-07-15 10:19 行走的思想 阅读(327) 评论(0) 推荐(0) 编辑
摘要:逆向分析工具 https://github.com/skylot/jadx/ https://github.com/google/android-classyshark https://github.com/JesusFreke/smali/wiki/smalidea https://www.hex 阅读全文
posted @ 2018-07-15 09:40 行走的思想 阅读(158) 评论(0) 推荐(0) 编辑
摘要:https://guides.codepath.com/android/Working-with-the-ImageView 阅读全文
posted @ 2018-07-15 09:24 行走的思想 阅读(181) 评论(0) 推荐(0) 编辑
摘要:https://source.android.google.cn/ https://developer.android.google.cn/ https://source.android.com/compatibility/cts/downloads.html 无法访问,改成如下形式即可: http 阅读全文
posted @ 2018-07-15 08:17 行走的思想 阅读(1105) 评论(0) 推荐(0) 编辑
该文被密码保护。
posted @ 2018-07-14 18:17 行走的思想 阅读(16) 评论(0) 推荐(0) 编辑
摘要:Apktool 下载地址: https://bitbucket.org/iBotPeaches/apktool/downloads/ https://ibotpeaches.github.io/Apktool/install/ https://apktool.org/docs/install/ 下载 阅读全文
posted @ 2018-07-14 18:03 行走的思想 阅读(3085) 评论(0) 推荐(0) 编辑
摘要:http://www.73207.com/useragent/ http://www.73207.com/useragent/pages/internet-2520explorer/index.htm http://www.73207.com/useragent/pages/useragentstr 阅读全文
posted @ 2018-07-14 13:34 行走的思想 阅读(1083) 评论(0) 推荐(0) 编辑
摘要:m:编译整个安卓系统 makes from the top of the tree mm:编译当前目录下的模块,当前目录下需要有Android.mk这个makefile文件,否则就往上找最近的Android.mk文件。 builds all of the moudles in the current 阅读全文
posted @ 2018-07-14 12:29 行走的思想 阅读(25731) 评论(0) 推荐(1) 编辑
摘要:1. 通过 aapt 工具查看 APK权限 2. 通过代码获取权限 3.AndroidManifest.xml 打印log: 07-13 07:54:50.708 22842 22842 D MainActivityZZ: <uses-permission> name =android.permis 阅读全文
posted @ 2018-07-13 14:11 行走的思想 阅读(3320) 评论(0) 推荐(0) 编辑
摘要:1. styles.xml 2. AndroidManifest.xml 阅读全文
posted @ 2018-07-13 13:42 行走的思想 阅读(3916) 评论(0) 推荐(0) 编辑
摘要:转自:https://jeffjade.com/2015/10/19/2015-10-18-Efficacious-win-software/ 工欲善其事,必先利其器!工欲善其事,必先利其器!工欲善其事,必先利其器!重而说三。 AutoHotKey: 神器!神器!神器!当然也得看使用者咯(^__^) 阅读全文
posted @ 2018-07-12 20:07 行走的思想 阅读(684) 评论(0) 推荐(0) 编辑
摘要:https://pkgs.org/download/filezilla 阅读全文
posted @ 2018-07-11 16:12 行走的思想 阅读(415) 评论(0) 推荐(0) 编辑
摘要:Microsoft Query 合并查询 Excel 2016 默认已集成 Power Query 功能 阅读全文
posted @ 2018-07-07 11:39 行走的思想 阅读(2098) 评论(0) 推荐(0) 编辑
摘要:搜狗输入法 里面的快捷键会影响wps的快捷键功能,需要关掉"搜狗输入法"里面的快捷键 1. 2.去除自动升级功能 3.去除 广告 WPS 2019 流程图(断网): 思维导图: 流程图: 云文档: WPS标签: http://www.360doc.com/content/17/0930/23/381 阅读全文
posted @ 2018-07-07 09:12 行走的思想 阅读(15249) 评论(0) 推荐(0) 编辑
摘要:1. 按住Ctrl和Alt键和Delete键 2. 快速启动栏打开win7任务管理器 3. Ctrl键+Shift键+Esc键的组合键 4. 桌面新建一个文本文档也叫记事本,打开,输入“C:\Windows\System32\taskmgr.exe”,另存为批处理文件,即 “.bat”文件,命名为任 阅读全文
posted @ 2018-07-01 11:58 行走的思想 阅读(1623) 评论(0) 推荐(0) 编辑

点击右上角即可分享
微信分享提示