android 防止按钮连续点击的方法(Button,ImageButton等)
摘要:public class Utils { private static long lastClickTime; public static boolean isFastDoubleClick() { long time = System.currentTimeMillis(); long timeD = time - lastClickTime; if ( 0 < timeD && timeD < 500) { return true; } lastClickTime = ...
阅读全文
posted @
2012-10-24 18:13
Tristan2012
阅读(1771)
推荐(0)
判定EditText中输入为空的方法
摘要:if ("".equals(text.getText().toString().trim()))
阅读全文
posted @
2012-10-23 09:24
Tristan2012
阅读(307)
推荐(0)
自定义checkbox后,文字和图片间距问题
摘要:今天开发过程中自定义了checkbox样式,但是后来发现图片离文字总是有一些间隔将checkbox的背景设置如下可以解决这个问题,让文字紧贴图片 android:background="@null"
阅读全文
posted @
2012-10-09 17:14
Tristan2012
阅读(2014)
推荐(0)