This commit is contained in:
2022-11-01 18:18:58 +08:00
parent b8ee197e52
commit a2de293e10
11 changed files with 728 additions and 148 deletions

View File

@@ -95,7 +95,7 @@ public abstract class RefreshAdapter<T> extends RecyclerView.Adapter {
return position;
}
protected boolean canClick() {
protected static boolean canClick() {
return ClickUtil.canClick();
}

View File

@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="utf-8"?>
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item android:state_checked="true">
<shape>
<corners android:radius="10dp"/>
<stroke android:width="1dp" android:color="#b6b6b6"/>
<shape android:shape="rectangle">
<solid android:color="#ffffffff" />
<corners android:radius="18dp" />
</shape>
</item>
<item android:state_checked="false">