1. 思考:重复性的代码流程应该导出为模板也方便规范

    问题 N年前做电脑端的游戏反外挂检测扫描,现在做Android的安全检测,Android手游的反外挂检测,Android应用的加固保护……发现流程上都有相似之处,例如初始化,各个检测项(工作项),收尾,一样的流程,每次都是一个模式,万变不离其宗,心想如果每次都重新搭建一个流程也是无畏的浪费时间,而且试想,如果放开让新人去写会不会按照规范来写?

    2017/11/27 program

  2. EditText在ListView中的键盘焦点问题

    Android开发中遇到的EditText在ListView中的键盘焦点问题,网上解决方法很多,但是都比较麻烦,其实最简单的解决方案就是: 用RecyclerView,参见:bigsinger/EditTextInRecyclerView,注意控件不要用这个属性:

    2017/11/27 android

  3. Android使用zxing创建二维码

    2017/10/30 android

  4. JetBrains IDE快捷键大全&VisualStudio快捷键设置与之相同

    快捷键

    2017/10/27 program

  5. c# enum枚举利用转json

    ```c# using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Reflection; using Newtonsoft.Json;

    2017/09/12 program

  6. .NET常用库收集

    CommandLineParser CommandLineParser

    2017/09/11 program

  7. .NET反编译工具汇总

    反编译 反编译

    2017/09/11 program

  8. C#界面编程

    2017/09/11 program

  9. C#线程及线程消息更新界面UI

    2017/09/11 program

  10. C#读写XML

    ```c# string filename = Path.Combine(System.AppDomain.CurrentDomain.BaseDirectory, FILENAME_OPTIONS); XmlDocument xmlDoc = new XmlDocument(); XmlNode root = null; XmlElement element = null;

    2017/09/11 program