问题 N年前做电脑端的游戏反外挂检测扫描,现在做Android的安全检测,Android手游的反外挂检测,Android应用的加固保护……发现流程上都有相似之处,例如初始化,各个检测项(工作项),收尾,一样的流程,每次都是一个模式,万变不离其宗,心想如果每次都重新搭建一个流程也是无畏的浪费时间,而且试想,如果放开让新人去写会不会按照规范来写?
Android开发中遇到的EditText在ListView中的键盘焦点问题,网上解决方法很多,但是都比较麻烦,其实最简单的解决方案就是: 用RecyclerView,参见:bigsinger/EditTextInRecyclerView,注意控件不要用这个属性:
快捷键
```c# using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Reflection; using Newtonsoft.Json;
```c# string filename = Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, FILENAME_OPTIONS); XmlDocument xmlDoc = new XmlDocument(); XmlNode root = null; XmlElement element = null;
```c# //Process.StandardOutput使用注意事项 http://blog.csdn.net/zhangweixing0/article/details/7356841 private void runCmd(string toolFile, string args) { Process p; ProcessStartInfo psi; psi = new ProcessStartInfo(toolFile); psi.WorkingDirectory = System.AppDomain.CurrentDomain.BaseDirectory; psi.Arguments = args; psi.CreateNoWindow = true; psi.WindowStyle = ProcessWindowStyle.Hidden; psi.UseShellExecute = false; psi.RedirectStandardOutput = true; psi.RedirectStandardError = true; psi.StandardOutputEncoding = Encoding.UTF8; psi.StandardErrorEncoding = Encoding.UTF8;
Xposed Module for Changing Android Device Info
地理位置欺骗地理位置模拟虚假地理位置xposed模块
frida代码汇总
🌱模仿开心农场偷菜小游戏 cocos制作的农场游戏demo源码 一个cocos2dxC++版本 一个Cocos Creator版本
使用C#编写的界面版adb操作工具 方便高效