240 发简信
IP属地:广东
  • kotlin携程小记

    package com.example.kotlin_demo import androidx.appcompat.app.AppCompatActivity import ...

  • Mars Xlog windows环境使用实践

    准备工作:python2.7环境,通过git克隆mars项目 注意: marxlog 脚本decode_mars_crypt_log_file.py 目前只能在python...

  • 二叉树

    public class Main { }

  • 排序

    /** * 冒泡算法 */ private static void bubbleSort() { int[] arr = {3, 1, 2, 8, 4, 6, 9, 5}; ...

  • ping

    package com.gd.windtrend.frontpos.service; import android.app.Service; import android.c...

  • Glide相关

    RequestManager管理当前Context下所有的图片加载request, RequestManager通过创建无View的Fragment管理request的生命周...

  • git的使用

    //当前文件夹初始化为仓库 git init // 查看是否有新增,和修改,删除的文件 git status //提交到暂存区 git add . //新增文件,修改的文件 ...

  • android 蓝牙4.0 ble随笔

    蓝牙4.0 Ble 主要有以下BluetoothGatt,BluetoothGattService,BluetoothGattCharacteristic,Bluetooth...

  • Android混淆

    #指定代码的压缩级别 -optimizationpasses 5 #包明不混合大小写 -dontusemixedcaseclassnames #不去忽略非公共的库类 -don...

  • 120
    ViewDragHelper解析以及侧滑控件实现

    在前一篇文章从PhotoView看Android手势监听实践中,介绍了PhotoView这一控件的手势控制的分析,其中有三个主要行为的触发,Drag,Fling,Scale,...