摘要: 在项目中,很多按钮控件都应该避免短时间内多次点击,转载一个可用的工具类 ButtonUtils public class ButtonUtils { private static long lastClickTime = 0; private static long DIFF = 1000; pri 阅读全文
posted @ 2020-07-31 15:13 TzzTZhj 阅读(6) 评论(0) 推荐(0)
摘要: 在布局文件 RecyclerView 外层套一个 RelativeLayout <RelativeLayout android:layout_width="match_parent" android:layout_height="wrap_content"> <androidx.recyclervi 阅读全文
posted @ 2020-07-31 15:06 TzzTZhj 阅读(15) 评论(0) 推荐(0)