摘要:
1、values目录中定义一个attrs.xml Format: name 自定义 format值 1.reference:参考指定Theme中资源ID,这个类型意思就是你传的值可以是引用资源 2.string:字符串,如果你想别人既能直接写值也可以用类似"@string/test"引用资源的方式,可以写成format="string|reference" 3.Color:颜色 4.boolean:布尔值 5.dimension... 阅读全文
摘要:
// 全局时间记录时间记录 private long firstTap = 0l; private long secondTap = 0l; // 双击事件--> 在MotionEvent.ACTION_UP时调用 (这里我用的300毫秒以内算双击) public boolean judgeDoubleTap() { if (this.firstTap == 0l) { this.firstTap = System.currentTimeMillis(); } else ... 阅读全文