Compare commits

...

6 Commits

Author SHA1 Message Date
ZhanGSKen
df51422e42 <aes>APK 7.6.11 release Publish. 2025-03-09 20:15:48 +08:00
ZhanGSKen
6e6540698b 百分比拖动确定按钮添加图标位置初始化设定 2025-03-09 20:14:06 +08:00
ZhanGSKen
5a756a0f00 <libaes>Library Release 7.6.10 2025-03-09 13:56:33 +08:00
ZhanGSKen
b13a3d4866 <aes>APK 7.6.10 release Publish. 2025-03-09 13:56:19 +08:00
ZhanGSKen
57973b7210 修改百分比拉动控件除了图标以外的区域的响应逻辑 2025-03-09 13:55:25 +08:00
ZhanGSKen
f30470e46f <libaes>Library Release 7.6.9 2025-03-09 13:47:14 +08:00
3 changed files with 11 additions and 10 deletions

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle #Created by .winboll/winboll_app_build.gradle
#Sun Mar 09 13:45:52 HKT 2025 #Sun Mar 09 20:15:48 HKT 2025
stageCount=10 stageCount=12
libraryProject=libaes libraryProject=libaes
baseVersion=7.6 baseVersion=7.6
publishVersion=7.6.9 publishVersion=7.6.11
buildCount=0 buildCount=0
baseBetaVersion=7.6.10 baseBetaVersion=7.6.12

View File

@@ -1,8 +1,8 @@
#Created by .winboll/winboll_app_build.gradle #Created by .winboll/winboll_app_build.gradle
#Sun Mar 09 13:45:52 HKT 2025 #Sun Mar 09 20:15:48 HKT 2025
stageCount=10 stageCount=12
libraryProject=libaes libraryProject=libaes
baseVersion=7.6 baseVersion=7.6
publishVersion=7.6.9 publishVersion=7.6.11
buildCount=0 buildCount=0
baseBetaVersion=7.6.10 baseBetaVersion=7.6.12

View File

@@ -55,14 +55,15 @@ public class AOHPCTCSeekBar extends SeekBar {
} }
void initView(Context context) { void initView(Context context) {
// 初始化图标位置
setThumbOffset(0);
} }
@Override @Override
public boolean dispatchTouchEvent(MotionEvent event) { public boolean dispatchTouchEvent(MotionEvent event) {
if (event.getAction() == MotionEvent.ACTION_DOWN) { if (event.getAction() == MotionEvent.ACTION_DOWN) {
getParent().requestDisallowInterceptTouchEvent(true);
if (thumbWidth + blurRightDP > event.getX() && event.getX() > 0) { if (thumbWidth + blurRightDP > event.getX() && event.getX() > 0) {
getParent().requestDisallowInterceptTouchEvent(true);
isStartSeek = true; isStartSeek = true;
} }
} else if (event.getAction() == MotionEvent.ACTION_MOVE) { } else if (event.getAction() == MotionEvent.ACTION_MOVE) {