version:1.6.5

fix:
update:优化联系人过多时翻页查找
This commit is contained in:
2025-06-10 09:14:01 +08:00
parent 3c1319c2dc
commit 1c3b17e7c2
2 changed files with 7 additions and 4 deletions

View File

@@ -17,8 +17,8 @@ android {
applicationId "com.xxpatx.os" applicationId "com.xxpatx.os"
minSdkVersion 24 minSdkVersion 24
targetSdkVersion 29 targetSdkVersion 29
versionCode 1063 versionCode 1065
versionName "1.6.3" versionName "1.6.5"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner" testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"

View File

@@ -224,10 +224,13 @@ public class SelectToSpeakService extends AccessibilityService {
step(Property.TEXT, TAG_TEXT, Step.CLICK_TAG); step(Property.TEXT, TAG_TEXT, Step.CLICK_TAG);
break; break;
case CLICK_TAG: case CLICK_TAG:
step(Property.TEXT, mTagName, Step.CLICK_NAME); if (!step(Property.TEXT, mTagName, Step.CLICK_NAME)){
Toaster.show("没有找到标签");
mCurrentStep = Step.WAITING;
}
break; break;
case CLICK_NAME://点击item case CLICK_NAME://点击item
step(Property.TEXT, mName, Step.CLICK_INFO); findContact(Property.TEXT, mName, Step.CLICK_INFO);
break; break;
case CLICK_INFO://进入个人信息页面 case CLICK_INFO://进入个人信息页面
stepCallDialog(Property.TEXT, DIALER_TEXT, Step.CLICK_CALL); stepCallDialog(Property.TEXT, DIALER_TEXT, Step.CLICK_CALL);