Compare commits
53 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| a98a224d26 | |||
| 9b12f95b8b | |||
| a57b48ddba | |||
| 3c3c2cf7a4 | |||
| bcb8005146 | |||
| 7c51d5b2e4 | |||
| 75f1e8176d | |||
| 582726aa37 | |||
| 5ea71eebea | |||
| 9a5647f096 | |||
| 8a1c6c8403 | |||
| 9b2d217081 | |||
| bdf71d1bba | |||
| 16069ba8c6 | |||
| ffad995b21 | |||
| 0aeb1cd27a | |||
| 1e89949a20 | |||
| a83ce449d0 | |||
| e292532cec | |||
| 4e859397b2 | |||
| 705900b813 | |||
| 41847fc882 | |||
| 3e78181621 | |||
| c3ce6d7980 | |||
| 7a1a591233 | |||
| ddd12b4736 | |||
| 1adf3c488c | |||
| 901304716f | |||
| 7559fb2fe0 | |||
| 98a91a8e1f | |||
| 88a2ac2103 | |||
| 15d67918ff | |||
| 873fbc358a | |||
| ac00b4d6fb | |||
| 2dd9646854 | |||
| d2424981fe | |||
| e15fd83fd7 | |||
| bee443d68e | |||
| f5003f6b14 | |||
| c9e0eb3304 | |||
| d6e7b49978 | |||
| 5de9ecc371 | |||
| cac012b50c | |||
| 414e0c5568 | |||
| aba7019e0f | |||
| 68a9d65280 | |||
| f918b91636 | |||
| 771f591a3a | |||
| 8aaec10d74 | |||
| a3d5031cdc | |||
| 9a7f651d80 | |||
| ba3877f3cc | |||
| 7e2f48f33a |
@@ -98,46 +98,4 @@ lint-results.html
|
|||||||
/winboll.properties
|
/winboll.properties
|
||||||
/local.properties
|
/local.properties
|
||||||
/settings.gradle
|
/settings.gradle
|
||||||
/gradle.properties
|
/gradle.properties
|
||||||
|
|
||||||
## WinBoLL 项目配置
|
|
||||||
#.git
|
|
||||||
#.gitignore
|
|
||||||
#.gitmodules
|
|
||||||
#.gradle
|
|
||||||
#.winboll
|
|
||||||
#GenKeyStore
|
|
||||||
#LICENSE
|
|
||||||
#LICENSE-Private-Demo
|
|
||||||
#LICENSE-Private-Demo_docs
|
|
||||||
#README.md
|
|
||||||
#aes
|
|
||||||
#appbase
|
|
||||||
appkey.jks
|
|
||||||
appkey.keystore
|
|
||||||
autonfc
|
|
||||||
#build.gradle
|
|
||||||
contacts
|
|
||||||
debugtemp
|
|
||||||
gallery
|
|
||||||
gpsrelaysentinel
|
|
||||||
#gradle
|
|
||||||
gradle.properties
|
|
||||||
#gradle.properties-android-demo
|
|
||||||
#gradle.properties-androidx-demo
|
|
||||||
#gradlew
|
|
||||||
#libaes
|
|
||||||
#libappbase
|
|
||||||
libdebugtemp
|
|
||||||
libgpsrelaysentinel
|
|
||||||
#libwinboll
|
|
||||||
local.properties
|
|
||||||
#local.properties-demo
|
|
||||||
mymessagemanager
|
|
||||||
positions
|
|
||||||
powerbell
|
|
||||||
settings.gradle
|
|
||||||
#settings.gradle-demo
|
|
||||||
#winboll
|
|
||||||
winboll.properties
|
|
||||||
#winboll.properties-demo
|
|
||||||
@@ -0,0 +1,191 @@
|
|||||||
|
#!/system/bin/sh
|
||||||
|
## 合并其他项目分支的模块源码到projects_keeper分支。
|
||||||
|
|
||||||
|
# ====================== 0. 进入目标目录 ======================
|
||||||
|
TARGET_DIR="/sdcard/AppProjects/Projects_Keeper"
|
||||||
|
|
||||||
|
echo "切换工作目录到:$TARGET_DIR"
|
||||||
|
if ! cd "$TARGET_DIR"; then
|
||||||
|
echo "=============================================="
|
||||||
|
echo "错误:无法进入目标目录 $TARGET_DIR"
|
||||||
|
echo "=============================================="
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ====================== 1. 拉取远程最新源码(失败直接退出) ======================
|
||||||
|
echo "=============================================="
|
||||||
|
echo "正在拉取远程最新源码..."
|
||||||
|
echo "=============================================="
|
||||||
|
if ! git pull; then
|
||||||
|
echo "=============================================="
|
||||||
|
echo "错误:拉取远程源码失败!"
|
||||||
|
echo "请检查网络、仓库冲突或手动处理 git 状态后再执行脚本。"
|
||||||
|
echo "=============================================="
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "✅ 源码已拉取为最新状态"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# ====================== 2. 目录路径检查 ======================
|
||||||
|
CUR_DIR=$(pwd)
|
||||||
|
if [ "$CUR_DIR" != "$TARGET_DIR" ]; then
|
||||||
|
echo "错误:当前目录不是项目根目录!"
|
||||||
|
echo "请先进入目录:$TARGET_DIR"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ====================== 3. Git 分支检查 ======================
|
||||||
|
CUR_BRANCH=$(git symbolic-ref --short HEAD 2>/dev/null)
|
||||||
|
TARGET_BRANCH="projects_keeper"
|
||||||
|
|
||||||
|
if [ "$CUR_BRANCH" != "$TARGET_BRANCH" ]; then
|
||||||
|
echo "错误:当前不在 $TARGET_BRANCH 分支!"
|
||||||
|
echo "当前分支:$CUR_BRANCH"
|
||||||
|
echo "请先执行:git checkout $TARGET_BRANCH"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ====================== 4. 预设标准模块列表 ======================
|
||||||
|
MERGE_OBJECTS_LIST=(
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
.gitmodules
|
||||||
|
.winboll
|
||||||
|
GenKeyStore
|
||||||
|
LICENSE
|
||||||
|
LICENSE-Private-Demo
|
||||||
|
LICENSE-Private-Demo_docs
|
||||||
|
README.md
|
||||||
|
aes
|
||||||
|
appbase
|
||||||
|
autonfc
|
||||||
|
build.gradle
|
||||||
|
contacts
|
||||||
|
debugtemp
|
||||||
|
gallery
|
||||||
|
gpsrelaysentinel
|
||||||
|
gradle
|
||||||
|
gradle.properties-android-demo
|
||||||
|
gradle.properties-androidx-demo
|
||||||
|
gradlew
|
||||||
|
libaes
|
||||||
|
libappbase
|
||||||
|
libdebugtemp
|
||||||
|
libgpsrelaysentinel
|
||||||
|
local.properties-demo
|
||||||
|
mymessagemanager
|
||||||
|
positions
|
||||||
|
powerbell
|
||||||
|
settings.gradle-demo
|
||||||
|
winboll
|
||||||
|
winboll.properties-demo
|
||||||
|
)
|
||||||
|
|
||||||
|
# ====================== 5. 获取当前目录真实文件列表(兼容过滤 . ..) ======================
|
||||||
|
REAL_ITEMS=()
|
||||||
|
# 使用固定排序ls,自动过滤 . 和 ..,不会进入比对数组
|
||||||
|
while IFS= read -r line; do
|
||||||
|
if [[ "$line" != "." && "$line" != ".." ]]; then
|
||||||
|
REAL_ITEMS+=("$line")
|
||||||
|
fi
|
||||||
|
done < <(LC_COLLATE=C ls -a1 --color=none)
|
||||||
|
|
||||||
|
# ====================== 6. 差异比对函数 ======================
|
||||||
|
check_diff() {
|
||||||
|
local missing=()
|
||||||
|
local extra=()
|
||||||
|
|
||||||
|
for item in "${MERGE_OBJECTS_LIST[@]}"; do
|
||||||
|
local found=0
|
||||||
|
for r in "${REAL_ITEMS[@]}"; do
|
||||||
|
if [[ "$item" == "$r" ]]; then
|
||||||
|
found=1
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if (( found == 0 )); then
|
||||||
|
missing+=("$item")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
for r in "${REAL_ITEMS[@]}"; do
|
||||||
|
local found=0
|
||||||
|
for item in "${MERGE_OBJECTS_LIST[@]}"; do
|
||||||
|
if [[ "$item" == "$r" ]]; then
|
||||||
|
found=1
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
if (( found == 0 )); then
|
||||||
|
extra+=("$r")
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ ${#missing[@]} -gt 0 || ${#extra[@]} -gt 0 ]]; then
|
||||||
|
echo "=============================================="
|
||||||
|
echo "【错误】合并环境与脚本预设列表不匹配!"
|
||||||
|
echo "请手动核对并修改合并脚本。"
|
||||||
|
echo "=============================================="
|
||||||
|
|
||||||
|
if [[ ${#missing[@]} -gt 0 ]]; then
|
||||||
|
echo -e "\n👉 本地缺失项目:"
|
||||||
|
for m in "${missing[@]}"; do echo " $m"; done
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ ${#extra[@]} -gt 0 ]]; then
|
||||||
|
echo -e "\n👉 本地多余项目:"
|
||||||
|
for e in "${extra[@]}"; do echo " $e"; done
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo -e "\n=============================================="
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# 执行差异校验
|
||||||
|
check_diff
|
||||||
|
|
||||||
|
# ====================== 全部校验通过,继续执行合并 ======================
|
||||||
|
echo -e "#@@@ 开始合并模块源码 @@@#
|
||||||
|
## 目标合并对象列表:"
|
||||||
|
|
||||||
|
for item in "${MERGE_OBJECTS_LIST[@]}"; do
|
||||||
|
echo "$item"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo -e "## 对象列表结束
|
||||||
|
"
|
||||||
|
|
||||||
|
## 合并 APP 项目
|
||||||
|
MERGE_APP_PROJECT_LIST=(
|
||||||
|
WinBoLL
|
||||||
|
)
|
||||||
|
echo -e "#@@@ 开始合并应用型模块源码 @@@#
|
||||||
|
## 目标合并对象列表:"
|
||||||
|
|
||||||
|
for item in "${MERGE_APP_PROJECT_LIST[@]}"; do
|
||||||
|
echo "正在合并 $item 项目 ..."
|
||||||
|
item_lower=$(echo "$item" | tr 'A-Z' 'a-z')
|
||||||
|
git checkout origin/$item_lower $item_lower
|
||||||
|
git add .
|
||||||
|
git commit -m "合并 $item 项目"
|
||||||
|
done
|
||||||
|
|
||||||
|
## 合并 LIB 项目
|
||||||
|
MERGE_LIB_PROJECT_LIST=(
|
||||||
|
APPBase
|
||||||
|
AES
|
||||||
|
)
|
||||||
|
echo -e "#@@@ 开始合并类库型模块源码 @@@#
|
||||||
|
## 目标合并对象列表:"
|
||||||
|
|
||||||
|
for item in "${MERGE_LIB_PROJECT_LIST[@]}"; do
|
||||||
|
echo "正在合并 $item 项目 ..."
|
||||||
|
item_lower=$(echo "$item" | tr 'A-Z' 'a-z')
|
||||||
|
git checkout origin/$item_lower $item_lower lib$item_lower
|
||||||
|
git add .
|
||||||
|
git commit -m "合并 $item 项目"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo '正在推送 Projects_Keeper 项目'
|
||||||
|
git push
|
||||||
@@ -0,0 +1,158 @@
|
|||||||
|
#!/system/bin/sh
|
||||||
|
## 逻辑:按时间取最新标签 → 拉取该标签目录合并
|
||||||
|
|
||||||
|
# 按创建时间取模块最新标签(最新打的标签排最后)
|
||||||
|
get_latest_module_tag(){
|
||||||
|
local mod=$1
|
||||||
|
git for-each-ref --sort=-creatordate --format='%(refname)' refs/tags/${mod}-* \
|
||||||
|
| grep -v '\^{}' \
|
||||||
|
| head -1 \
|
||||||
|
| sed 's/refs\/tags\///'
|
||||||
|
}
|
||||||
|
|
||||||
|
# 通过标签获取commit
|
||||||
|
get_commit_from_tag(){
|
||||||
|
local tag=$1
|
||||||
|
git rev-parse --short "${tag}^{commit}"
|
||||||
|
}
|
||||||
|
|
||||||
|
# 工作目录
|
||||||
|
TARGET_DIR="/sdcard/AppProjects/Projects_Keeper_Tag"
|
||||||
|
echo "进入目录:${TARGET_DIR}"
|
||||||
|
cd "${TARGET_DIR}" || exit 1
|
||||||
|
|
||||||
|
# 同步远程
|
||||||
|
echo "========================================"
|
||||||
|
echo "同步远程分支与全部版本标签"
|
||||||
|
echo "========================================"
|
||||||
|
git fetch origin --prune
|
||||||
|
git fetch origin --tags
|
||||||
|
echo "同步完成"
|
||||||
|
echo ""
|
||||||
|
|
||||||
|
# 校验目标分支
|
||||||
|
NOW_BRANCH=$(git symbolic-ref --short HEAD)
|
||||||
|
TARGET_BRANCH="projects_keeper_tag"
|
||||||
|
if [ "${NOW_BRANCH}" != "${TARGET_BRANCH}" ];then
|
||||||
|
echo "错误:请先切换到 ${TARGET_BRANCH} 分支"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 目录结构校验白名单(不含 . ..)
|
||||||
|
MERGE_OBJECTS_LIST=(
|
||||||
|
.git
|
||||||
|
.gitignore
|
||||||
|
.gitmodules
|
||||||
|
.winboll
|
||||||
|
GenKeyStore
|
||||||
|
LICENSE
|
||||||
|
LICENSE-Private-Demo
|
||||||
|
LICENSE-Private-Demo_docs
|
||||||
|
README.md
|
||||||
|
aes
|
||||||
|
appbase
|
||||||
|
autonfc
|
||||||
|
build.gradle
|
||||||
|
contacts
|
||||||
|
debugtemp
|
||||||
|
gallery
|
||||||
|
gpsrelaysentinel
|
||||||
|
gradle
|
||||||
|
gradle.properties-android-demo
|
||||||
|
gradle.properties-androidx-demo
|
||||||
|
gradlew
|
||||||
|
libaes
|
||||||
|
libappbase
|
||||||
|
libdebugtemp
|
||||||
|
libgpsrelaysentinel
|
||||||
|
local.properties-demo
|
||||||
|
mymessagemanager
|
||||||
|
positions
|
||||||
|
powerbell
|
||||||
|
settings.gradle-demo
|
||||||
|
winboll
|
||||||
|
winboll.properties-demo
|
||||||
|
)
|
||||||
|
|
||||||
|
REAL_ITEMS=()
|
||||||
|
# 标准排序ls输出,循环强制过滤 . 和 ..
|
||||||
|
while IFS= read -r line; do
|
||||||
|
# 跳过虚拟目录 . 和 ..
|
||||||
|
if [[ "$line" != "." && "$line" != ".." ]]; then
|
||||||
|
REAL_ITEMS+=("$line")
|
||||||
|
fi
|
||||||
|
done < <(LC_COLLATE=C ls -a1 --color=none)
|
||||||
|
|
||||||
|
check_diff(){
|
||||||
|
local miss=() extra=()
|
||||||
|
for i in "${MERGE_OBJECTS_LIST[@]}";do
|
||||||
|
[[ ! " ${REAL_ITEMS[@]} " =~ " ${i} " ]] && miss+=("$i")
|
||||||
|
done
|
||||||
|
for i in "${REAL_ITEMS[@]}";do
|
||||||
|
[[ ! " ${MERGE_OBJECTS_LIST[@]} " =~ " ${i} " ]] && extra+=("$i")
|
||||||
|
done
|
||||||
|
if [[ ${#miss[@]} -gt 0 || ${#extra[@]} -gt 0 ]];then
|
||||||
|
echo "========================================"
|
||||||
|
echo "本地目录结构不一致,终止运行"
|
||||||
|
if [[ ${#miss[@]} -gt 0 ]]; then
|
||||||
|
echo -e "\n缺失条目:"
|
||||||
|
for m in "${miss[@]}"; do echo " $m"; done
|
||||||
|
fi
|
||||||
|
if [[ ${#extra[@]} -gt 0 ]]; then
|
||||||
|
echo -e "\n多余条目:"
|
||||||
|
for e in "${extra[@]}"; do echo " $e"; done
|
||||||
|
fi
|
||||||
|
echo "========================================"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
check_diff
|
||||||
|
|
||||||
|
echo -e "#@@@ 按时间获取最新标签合并模块源码 @@@#"
|
||||||
|
|
||||||
|
# 应用型模块
|
||||||
|
MERGE_APP_PROJECT_LIST=(WinBoLL)
|
||||||
|
echo -e "---------- 应用型模块 ----------"
|
||||||
|
for name in "${MERGE_APP_PROJECT_LIST[@]}";do
|
||||||
|
low_name=$(echo "$name" | tr 'A-Z' 'a-z')
|
||||||
|
tag=$(get_latest_module_tag "${low_name}")
|
||||||
|
if [[ -z "${tag}" ]];then
|
||||||
|
echo "跳过 ${low_name}:无远程标签"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
commit=$(get_commit_from_tag "${tag}")
|
||||||
|
if [[ -z "${commit}" ]];then
|
||||||
|
echo "跳过 ${low_name}:标签无有效提交点"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
echo "模块:${low_name} 最新时间标签:${tag} 提交ID:${commit}"
|
||||||
|
# 强制拉取覆盖
|
||||||
|
git checkout -f "${tag}" -- "${low_name}"
|
||||||
|
git add "${low_name}"
|
||||||
|
git commit -m "合并模块${name} 同步最新时间标签${tag}"
|
||||||
|
done
|
||||||
|
|
||||||
|
# 类库模块
|
||||||
|
MERGE_LIB_PROJECT_LIST=(APPBase AES)
|
||||||
|
echo -e "---------- 类库模块 ----------"
|
||||||
|
for name in "${MERGE_LIB_PROJECT_LIST[@]}";do
|
||||||
|
low_name=$(echo "$name" | tr 'A-Z' 'a-z')
|
||||||
|
tag=$(get_latest_module_tag "${low_name}")
|
||||||
|
if [[ -z "${tag}" ]];then
|
||||||
|
echo "跳过 ${low_name}:无远程标签"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
commit=$(get_commit_from_tag "${tag}")
|
||||||
|
if [[ -z "${commit}" ]];then
|
||||||
|
echo "跳过 ${low_name}:标签无有效提交点"
|
||||||
|
continue
|
||||||
|
fi
|
||||||
|
echo "模块:${low_name} 最新时间标签:${tag} 提交ID:${commit}"
|
||||||
|
git checkout -f "${tag}" -- "${low_name}" "lib${low_name}"
|
||||||
|
git add "${low_name}" "lib${low_name}"
|
||||||
|
git commit -m "合并模块${name} 同步最新时间标签${tag}"
|
||||||
|
done
|
||||||
|
|
||||||
|
echo "全部模块合并执行完毕"
|
||||||
|
echo "执行推送:git push"
|
||||||
|
git push
|
||||||
@@ -0,0 +1,228 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
# ==============================================================================
|
||||||
|
# WinBoLL 应用发布脚本
|
||||||
|
# 功能:检查Git源码状态 → 编译Stage Release包 → 添加WinBoLL标签 → 提交并推送源码
|
||||||
|
# 依赖:build.properties、app_update_description.txt(项目根目录下)
|
||||||
|
# 使用:./script_name.sh <APP_NAME>
|
||||||
|
# 作者:豆包&ZhanGSKen<zhangsken@qq.com>
|
||||||
|
# ==============================================================================
|
||||||
|
|
||||||
|
# ==================== 常量定义 ====================
|
||||||
|
# 脚本退出码
|
||||||
|
EXIT_CODE_SUCCESS=0
|
||||||
|
EXIT_CODE_ERR_NO_APP_NAME=2
|
||||||
|
EXIT_CODE_ERR_WORK_DIR=1
|
||||||
|
EXIT_CODE_ERR_GIT_CHECK=1
|
||||||
|
EXIT_CODE_ERR_ADD_WINBOLL_TAG=1
|
||||||
|
|
||||||
|
# Gradle 任务(正式发布)
|
||||||
|
GRADLE_TASK_PUBLISH="assembleStageRelease"
|
||||||
|
# Gradle 任务(调试用,注释备用)
|
||||||
|
# GRADLE_TASK_DEBUG="assembleBetaDebug"
|
||||||
|
|
||||||
|
# aapt2本地覆盖参数
|
||||||
|
AAPT2_OVERRIDE_ARG="-Pandroid.aapt2FromMavenOverride=/data/data/com.termux/files/usr/bin/aapt2"
|
||||||
|
# 禁用Gradle守护进程
|
||||||
|
GRADLE_NO_DAEMON="--no-daemon"
|
||||||
|
|
||||||
|
# ==================== 函数定义 ====================
|
||||||
|
# 检查Git源码是否已完全提交(无未提交变更)
|
||||||
|
# 返回值:0=已完全提交,1=存在未提交变更
|
||||||
|
function checkGitSources() {
|
||||||
|
# 配置Git安全目录(解决权限问题)
|
||||||
|
git config --global --add safe.directory "$(pwd)"
|
||||||
|
|
||||||
|
# 检查是否有未提交的变更
|
||||||
|
if [[ -n $(git diff --stat) ]]; then
|
||||||
|
echo "[ERROR] Git源码存在未提交变更,请先提交所有修改!"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
echo "[INFO] Git源码检查通过:所有变更已提交。"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# 询问是否添加GitHub Workflows标签(当前逻辑注释,保留扩展能力)
|
||||||
|
# 返回值:1=用户选择是,0=用户选择否
|
||||||
|
function askAddWorkflowsTag() {
|
||||||
|
read -p "是否添加GitHub Workflows标签?(Y/n) " answer
|
||||||
|
if [[ $answer =~ ^[Yy]$ ]]; then
|
||||||
|
return 1
|
||||||
|
else
|
||||||
|
return 0
|
||||||
|
fi
|
||||||
|
}
|
||||||
|
|
||||||
|
# 添加WinBoLL正式标签
|
||||||
|
# 参数:$1=应用名称(项目根目录名)
|
||||||
|
# 返回值:0=标签添加成功,1=标签已存在/添加失败
|
||||||
|
function addWinBoLLTag() {
|
||||||
|
local app_name=$1
|
||||||
|
local build_prop_path="${app_name}/build.properties"
|
||||||
|
|
||||||
|
# 从build.properties中提取publishVersion
|
||||||
|
local publish_version=$(grep -o "publishVersion=.*" "${build_prop_path}" | awk -F '=' '{print $2}')
|
||||||
|
if [[ -z ${publish_version} ]]; then
|
||||||
|
echo "[ERROR] 未从${build_prop_path}中提取到publishVersion配置!"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
echo "[INFO] 从${build_prop_path}读取到publishVersion:${publish_version}"
|
||||||
|
|
||||||
|
# 构造WinBoLL标签(格式:<APP_NAME>-v<publishVersion>)
|
||||||
|
local tag="${app_name}-v${publish_version}"
|
||||||
|
echo "[INFO] 准备添加WinBoLL标签:${tag}"
|
||||||
|
|
||||||
|
# 检查标签是否已存在
|
||||||
|
if [[ "$(git tag -l ${tag})" == "${tag}" ]]; then
|
||||||
|
echo "[ERROR] WinBoLL标签${tag}已存在!"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 添加带注释的标签(注释来自app_update_description.txt)
|
||||||
|
git tag -a "${tag}" -F "${app_name}/app_update_description.txt"
|
||||||
|
echo "[INFO] WinBoLL标签${tag}添加成功!"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# 添加GitHub Workflows Beta标签(当前逻辑注释,保留扩展能力)
|
||||||
|
# 参数:$1=应用名称(项目根目录名)
|
||||||
|
# 返回值:0=标签添加成功,1=标签已存在/添加失败
|
||||||
|
function addWorkflowsTag() {
|
||||||
|
local app_name=$1
|
||||||
|
local build_prop_path="${app_name}/build.properties"
|
||||||
|
|
||||||
|
# 从build.properties中提取baseBetaVersion
|
||||||
|
local base_beta_version=$(grep -o "baseBetaVersion=.*" "${build_prop_path}" | awk -F '=' '{print $2}')
|
||||||
|
if [[ -z ${base_beta_version} ]]; then
|
||||||
|
echo "[ERROR] 未从${build_prop_path}中提取到baseBetaVersion配置!"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
echo "[INFO] 从${build_prop_path}读取到baseBetaVersion:${base_beta_version}"
|
||||||
|
|
||||||
|
# 构造Workflows标签(格式:<APP_NAME>-v<baseBetaVersion>-beta)
|
||||||
|
local tag="${app_name}-v${base_beta_version}-beta"
|
||||||
|
echo "[INFO] 准备添加Workflows标签:${tag}"
|
||||||
|
|
||||||
|
# 检查标签是否已存在
|
||||||
|
if [[ "$(git tag -l ${tag})" == "${tag}" ]]; then
|
||||||
|
echo "[ERROR] Workflows标签${tag}已存在!"
|
||||||
|
return 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 添加带注释的标签(注释来自app_update_description.txt)
|
||||||
|
git tag -a "${tag}" -F "${app_name}/app_update_description.txt"
|
||||||
|
echo "[INFO] Workflows标签${tag}添加成功!"
|
||||||
|
return 0
|
||||||
|
}
|
||||||
|
|
||||||
|
# ==================== 主流程开始 ====================
|
||||||
|
echo "============================================="
|
||||||
|
echo " WinBoLL 应用发布脚本"
|
||||||
|
echo "============================================="
|
||||||
|
|
||||||
|
# 1. 检查应用名称参数是否指定
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
echo "[ERROR] 未指定应用名称!使用方式:${0} <APP_NAME>"
|
||||||
|
exit ${EXIT_CODE_ERR_NO_APP_NAME}
|
||||||
|
fi
|
||||||
|
APP_NAME=$1
|
||||||
|
echo "[INFO] 待发布应用名称:${APP_NAME}"
|
||||||
|
|
||||||
|
# 2. 检查并切换到项目根目录(确保build.properties存在)
|
||||||
|
echo "[INFO] 当前工作目录:$(pwd)"
|
||||||
|
if [[ ! -e "${APP_NAME}/build.properties" ]]; then
|
||||||
|
echo "[WARNING] 当前目录不存在${APP_NAME}/build.properties,尝试切换到上级目录..."
|
||||||
|
cd ..
|
||||||
|
echo "[INFO] 切换后工作目录:$(pwd)"
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 验证最终工作目录是否正确
|
||||||
|
if [[ ! -e "${APP_NAME}/build.properties" ]]; then
|
||||||
|
echo "[ERROR] 工作目录错误!${APP_NAME}/build.properties 文件不存在。"
|
||||||
|
exit ${EXIT_CODE_ERR_WORK_DIR}
|
||||||
|
fi
|
||||||
|
echo "[INFO] 工作目录验证通过:${APP_NAME}/build.properties 存在。"
|
||||||
|
|
||||||
|
# 3. 检查Git源码状态
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
echo " 步骤1:检查Git源码状态"
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
checkGitSources
|
||||||
|
if [[ $? -ne ${EXIT_CODE_SUCCESS} ]]; then
|
||||||
|
echo "[ERROR] Git源码检查失败,脚本终止!"
|
||||||
|
exit ${EXIT_CODE_ERR_GIT_CHECK}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 4. 编译Stage Release版本APK(携带aapt2覆盖参数 + --no-daemon)
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
echo " 步骤2:编译Stage Release APK"
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
echo "[INFO] 开始执行Gradle任务:${GRADLE_TASK_PUBLISH}"
|
||||||
|
# 调试用(注释正式任务,启用调试任务)
|
||||||
|
# bash gradlew ${AAPT2_OVERRIDE_ARG} ${GRADLE_NO_DAEMON} :${APP_NAME}:${GRADLE_TASK_DEBUG}
|
||||||
|
bash gradlew ${AAPT2_OVERRIDE_ARG} ${GRADLE_NO_DAEMON} :${APP_NAME}:${GRADLE_TASK_PUBLISH}
|
||||||
|
|
||||||
|
if [[ $? -ne ${EXIT_CODE_SUCCESS} ]]; then
|
||||||
|
echo "[ERROR] Gradle编译任务失败!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "[INFO] Stage Release APK编译成功!"
|
||||||
|
|
||||||
|
# 5. 添加WinBoLL正式标签
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
echo " 步骤3:添加WinBoLL标签"
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
addWinBoLLTag ${APP_NAME}
|
||||||
|
if [[ $? -ne ${EXIT_CODE_SUCCESS} ]]; then
|
||||||
|
echo "[ERROR] WinBoLL标签添加失败,脚本终止!"
|
||||||
|
exit ${EXIT_CODE_ERR_ADD_WINBOLL_TAG}
|
||||||
|
fi
|
||||||
|
|
||||||
|
# 6. (可选)添加GitHub Workflows标签(当前逻辑注释,保留扩展能力)
|
||||||
|
# echo "---------------------------------------------"
|
||||||
|
# echo " 步骤4:添加Workflows标签(可选)"
|
||||||
|
# echo "---------------------------------------------"
|
||||||
|
# echo "是否添加GitHub Workflows Beta标签?(Y/n) "
|
||||||
|
# askAddWorkflowsTag
|
||||||
|
# nAskAddWorkflowsTag=$?
|
||||||
|
# if [[ ${nAskAddWorkflowsTag} -eq 1 ]]; then
|
||||||
|
# addWorkflowsTag ${APP_NAME}
|
||||||
|
# if [[ $? -ne ${EXIT_CODE_SUCCESS} ]]; then
|
||||||
|
# echo "[ERROR] Workflows标签添加失败,脚本终止!"
|
||||||
|
# exit 1
|
||||||
|
# fi
|
||||||
|
# fi
|
||||||
|
|
||||||
|
# 7. 清理更新描述文件
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
echo " 步骤5:清理更新描述文件"
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
echo "" > "${APP_NAME}/app_update_description.txt"
|
||||||
|
echo "[INFO] 已清空${APP_NAME}/app_update_description.txt"
|
||||||
|
|
||||||
|
# 8. 提交并推送源码与标签
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
echo " 步骤6:提交并推送源码"
|
||||||
|
echo "---------------------------------------------"
|
||||||
|
git add .
|
||||||
|
git commit -m "<${APP_NAME}> 开始新的Stage版本开发。"
|
||||||
|
echo "[INFO] 源码提交成功,开始推送..."
|
||||||
|
|
||||||
|
# 推送源码到远程仓库
|
||||||
|
git push origin
|
||||||
|
# 推送标签到远程仓库
|
||||||
|
git push origin --tags
|
||||||
|
|
||||||
|
if [[ $? -eq ${EXIT_CODE_SUCCESS} ]]; then
|
||||||
|
echo "[INFO] 源码与标签推送成功!"
|
||||||
|
else
|
||||||
|
echo "[ERROR] 源码与标签推送失败!"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
|
# ==================== 主流程结束 ====================
|
||||||
|
echo "============================================="
|
||||||
|
echo " WinBoLL 应用发布完成!"
|
||||||
|
echo "============================================="
|
||||||
|
exit ${EXIT_CODE_SUCCESS}
|
||||||
|
|
||||||
@@ -0,0 +1,20 @@
|
|||||||
|
#!/usr/bin/bash
|
||||||
|
|
||||||
|
# aapt2本地覆盖参数
|
||||||
|
AAPT2_OVERRIDE_ARG="-Pandroid.aapt2FromMavenOverride=/data/data/com.termux/files/usr/bin/aapt2"
|
||||||
|
# Gradle禁用守护进程参数
|
||||||
|
GRADLE_NO_DAEMON="--no-daemon"
|
||||||
|
|
||||||
|
# 检查是否指定了将要发布的类库名称
|
||||||
|
# 使用 `-z` 命令检查变量是否为空
|
||||||
|
if [ -z "$1" ]; then
|
||||||
|
echo "No Library name specified : $0"
|
||||||
|
exit 2
|
||||||
|
fi
|
||||||
|
|
||||||
|
## 正式发布使用
|
||||||
|
git pull && bash gradlew ${AAPT2_OVERRIDE_ARG} ${GRADLE_NO_DAEMON} :$1:publishReleasePublicationToWinBoLLReleaseRepository && bash .winboll/bashCommitLibReleaseBuildFlagInfo.sh $1
|
||||||
|
|
||||||
|
## 调试使用
|
||||||
|
#bash gradlew ${AAPT2_OVERRIDE_ARG} ${GRADLE_NO_DAEMON} :$1:publishSnapshotWinBoLLPublicationToWinBoLLSnapshotRepository && bash .winboll/bashCommitLibReleaseBuildFlagInfo.sh $1
|
||||||
|
|
||||||
@@ -122,7 +122,6 @@ android {
|
|||||||
// 如果正在调试,就拷贝到 WinBoLL 备份管理文件夹
|
// 如果正在调试,就拷贝到 WinBoLL 备份管理文件夹
|
||||||
//
|
//
|
||||||
if(variant.flavorName == "beta"&&variant.buildType.name == "debug"){
|
if(variant.flavorName == "beta"&&variant.buildType.name == "debug"){
|
||||||
//File outBuildBckDir = new File(fWinBoLLStudioDir, "/${rootProject.name}/${variant.buildType.name}")
|
|
||||||
File outBuildBckDir = new File(fWinBoLLStudioDir, "/" + project.rootDir.name + "/${variant.buildType.name}")
|
File outBuildBckDir = new File(fWinBoLLStudioDir, "/" + project.rootDir.name + "/${variant.buildType.name}")
|
||||||
// 创建目标路径目录
|
// 创建目标路径目录
|
||||||
if(!outBuildBckDir.exists()) {
|
if(!outBuildBckDir.exists()) {
|
||||||
@@ -130,6 +129,7 @@ android {
|
|||||||
println "Output Folder Created.(WinBoLLStudio) : " + outBuildBckDir.getAbsolutePath()
|
println "Output Folder Created.(WinBoLLStudio) : " + outBuildBckDir.getAbsolutePath()
|
||||||
}
|
}
|
||||||
if(outBuildBckDir.exists()) {
|
if(outBuildBckDir.exists()) {
|
||||||
|
def targetApkFile = new File(outBuildBckDir, outputFileName)
|
||||||
copy{
|
copy{
|
||||||
from file.outputFile
|
from file.outputFile
|
||||||
into outBuildBckDir
|
into outBuildBckDir
|
||||||
@@ -138,6 +138,14 @@ android {
|
|||||||
}
|
}
|
||||||
println "Output APK (WinBoLLStudio): " + outBuildBckDir.getAbsolutePath() + "/${outputFileName}"
|
println "Output APK (WinBoLLStudio): " + outBuildBckDir.getAbsolutePath() + "/${outputFileName}"
|
||||||
}
|
}
|
||||||
|
// ========== 设置文件权限为775 ==========
|
||||||
|
if(targetApkFile.exists()){
|
||||||
|
exec {
|
||||||
|
commandLine 'chmod', '775', targetApkFile.absolutePath
|
||||||
|
}
|
||||||
|
println "Set file permission to 775 : ${targetApkFile.absolutePath}"
|
||||||
|
}
|
||||||
|
|
||||||
// 检查编译标志位配置
|
// 检查编译标志位配置
|
||||||
assert (winbollBuildProps['buildCount'] != null)
|
assert (winbollBuildProps['buildCount'] != null)
|
||||||
assert (winbollBuildProps['libraryProject'] != null)
|
assert (winbollBuildProps['libraryProject'] != null)
|
||||||
@@ -160,8 +168,7 @@ android {
|
|||||||
assert(libraryProjectBuildPropsFile.exists())
|
assert(libraryProjectBuildPropsFile.exists())
|
||||||
java.nio.file.Path sourceFilePath = winbollBuildPropsFile.toPath();
|
java.nio.file.Path sourceFilePath = winbollBuildPropsFile.toPath();
|
||||||
java.nio.file.Path targetFilePath = libraryProjectBuildPropsFile.toPath();
|
java.nio.file.Path targetFilePath = libraryProjectBuildPropsFile.toPath();
|
||||||
// 使用copyTo()方法复制文件,如果目标文件存在会被覆盖,可选参数可以选择不覆盖
|
java.nio.file.Files.copy(sourceFilePath, targetFilePath, java.nio.file.StandardCopyOption.REPLACE_EXISTING);
|
||||||
java.nio.file.Files.copy(sourceFilePath, targetFilePath, java.nio.file.StandardCopyOption.REPLACE_EXISTING);
|
|
||||||
|
|
||||||
println "\n\n>>> Library Project build.properties saved.\n\n";
|
println "\n\n>>> Library Project build.properties saved.\n\n";
|
||||||
}
|
}
|
||||||
@@ -172,16 +179,12 @@ android {
|
|||||||
//
|
//
|
||||||
if(variant.flavorName == "stage"&&variant.buildType.name == "release"){
|
if(variant.flavorName == "stage"&&variant.buildType.name == "release"){
|
||||||
// 发布 APK 文件
|
// 发布 APK 文件
|
||||||
//
|
|
||||||
// 截取版本号的版本字段为短版本名
|
|
||||||
String szVersionName = "${versionName}"
|
String szVersionName = "${versionName}"
|
||||||
String[] szlistTemp = szVersionName.split("-")
|
String[] szlistTemp = szVersionName.split("-")
|
||||||
String szShortVersionName = szlistTemp[0]
|
String szShortVersionName = szlistTemp[0]
|
||||||
//String szCommonTagAPKName = "${rootProject.name}_" + szShortVersionName + ".apk"
|
|
||||||
String szCommonTagAPKName = project.rootDir.name + "_" + szShortVersionName + ".apk"
|
String szCommonTagAPKName = project.rootDir.name + "_" + szShortVersionName + ".apk"
|
||||||
println "CommonTagAPKName is : " + szCommonTagAPKName
|
println "CommonTagAPKName is : " + szCommonTagAPKName
|
||||||
|
|
||||||
//File outTagDir = new File(fWinBoLLStudioDir, "/${rootProject.name}/tag/")
|
|
||||||
File outTagDir = new File(fWinBoLLStudioDir, "/" + project.rootDir.name + "/tag/")
|
File outTagDir = new File(fWinBoLLStudioDir, "/" + project.rootDir.name + "/tag/")
|
||||||
// 创建目标路径目录
|
// 创建目标路径目录
|
||||||
if(!outTagDir.exists()) {
|
if(!outTagDir.exists()) {
|
||||||
@@ -192,12 +195,10 @@ android {
|
|||||||
if(outTagDir.exists()) {
|
if(outTagDir.exists()) {
|
||||||
File targetAPK = new File(outTagDir, "${szCommonTagAPKName}")
|
File targetAPK = new File(outTagDir, "${szCommonTagAPKName}")
|
||||||
if(targetAPK.exists()) {
|
if(targetAPK.exists()) {
|
||||||
// 标签版本APK文件已经存在,构建拷贝任务停止
|
|
||||||
assert (!targetAPK.exists())
|
assert (!targetAPK.exists())
|
||||||
// 可选择删除并继续输出APK文件
|
|
||||||
//delete targetAPK
|
|
||||||
}
|
}
|
||||||
// 复制一个备份
|
// 复制完整版APK
|
||||||
|
def fullApkFile = new File(outTagDir, outputFileName)
|
||||||
copy{
|
copy{
|
||||||
from file.outputFile
|
from file.outputFile
|
||||||
into outTagDir
|
into outTagDir
|
||||||
@@ -206,7 +207,16 @@ android {
|
|||||||
}
|
}
|
||||||
println "Output APK (Tags): "+ outTagDir.getAbsolutePath() + "/${outputFileName}"
|
println "Output APK (Tags): "+ outTagDir.getAbsolutePath() + "/${outputFileName}"
|
||||||
}
|
}
|
||||||
// 复制一个并重命名为短版本名
|
// 设置权限775。
|
||||||
|
if(fullApkFile.exists()){
|
||||||
|
exec {
|
||||||
|
commandLine 'chmod', '775', fullApkFile.absolutePath
|
||||||
|
}
|
||||||
|
println "Set file permission to 775 : ${fullApkFile.absolutePath}"
|
||||||
|
}
|
||||||
|
|
||||||
|
// 复制短版本名APK
|
||||||
|
def shortApkFile = new File(outTagDir, szCommonTagAPKName)
|
||||||
copy{
|
copy{
|
||||||
from file.outputFile
|
from file.outputFile
|
||||||
into outTagDir
|
into outTagDir
|
||||||
@@ -215,6 +225,14 @@ android {
|
|||||||
}
|
}
|
||||||
println "Output APK (Tags): "+ outTagDir.getAbsolutePath() + "/${szCommonTagAPKName}"
|
println "Output APK (Tags): "+ outTagDir.getAbsolutePath() + "/${szCommonTagAPKName}"
|
||||||
}
|
}
|
||||||
|
// 设置权限775。
|
||||||
|
if(shortApkFile.exists()){
|
||||||
|
exec {
|
||||||
|
commandLine 'chmod', '775', shortApkFile.absolutePath
|
||||||
|
}
|
||||||
|
println "Set file permission to 775 : ${shortApkFile.absolutePath}"
|
||||||
|
}
|
||||||
|
|
||||||
// 检查编译标志位配置
|
// 检查编译标志位配置
|
||||||
assert (winbollBuildProps['stageCount'] != null)
|
assert (winbollBuildProps['stageCount'] != null)
|
||||||
assert (winbollBuildProps['publishVersion'] != null)
|
assert (winbollBuildProps['publishVersion'] != null)
|
||||||
@@ -239,14 +257,11 @@ android {
|
|||||||
fos.close();
|
fos.close();
|
||||||
|
|
||||||
if(winbollBuildProps['libraryProject'] != "") {
|
if(winbollBuildProps['libraryProject'] != "") {
|
||||||
// 如果应用 build.properties 文件设置了类库模块项目文件名
|
|
||||||
// 就拷贝一份新的编译标志配置到类库项目文件夹
|
|
||||||
File libraryProjectBuildPropsFile = new File("$RootProjectDir/" + winbollBuildProps['libraryProject'] + "/build.properties")
|
File libraryProjectBuildPropsFile = new File("$RootProjectDir/" + winbollBuildProps['libraryProject'] + "/build.properties")
|
||||||
assert(winbollBuildPropsFile.exists())
|
assert(winbollBuildPropsFile.exists())
|
||||||
assert(libraryProjectBuildPropsFile.exists())
|
assert(libraryProjectBuildPropsFile.exists())
|
||||||
java.nio.file.Path sourceFilePath = winbollBuildPropsFile.toPath();
|
java.nio.file.Path sourceFilePath = winbollBuildPropsFile.toPath();
|
||||||
java.nio.file.Path targetFilePath = libraryProjectBuildPropsFile.toPath();
|
java.nio.file.Path targetFilePath = libraryProjectBuildPropsFile.toPath();
|
||||||
// 使用copyTo()方法复制文件,如果目标文件存在会被覆盖,可选参数可以选择不覆盖
|
|
||||||
java.nio.file.Files.copy(sourceFilePath, targetFilePath, java.nio.file.StandardCopyOption.REPLACE_EXISTING);
|
java.nio.file.Files.copy(sourceFilePath, targetFilePath, java.nio.file.StandardCopyOption.REPLACE_EXISTING);
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -263,17 +278,12 @@ android {
|
|||||||
// 如果正在调试发布版,就只生成和输出APK文件,不处理 Git 仓库提交与更新问题。
|
// 如果正在调试发布版,就只生成和输出APK文件,不处理 Git 仓库提交与更新问题。
|
||||||
//
|
//
|
||||||
if(variant.flavorName == "stage"&&variant.buildType.name == "debug"){
|
if(variant.flavorName == "stage"&&variant.buildType.name == "debug"){
|
||||||
// 发布 APK 文件
|
|
||||||
//
|
|
||||||
// 截取版本号的版本字段为短版本名
|
|
||||||
String szVersionName = "${versionName}"
|
String szVersionName = "${versionName}"
|
||||||
String[] szlistTemp = szVersionName.split("-")
|
String[] szlistTemp = szVersionName.split("-")
|
||||||
String szShortVersionName = szlistTemp[0]
|
String szShortVersionName = szlistTemp[0]
|
||||||
//String szCommonTagAPKName = "${rootProject.name}_" + szShortVersionName + ".apk"
|
|
||||||
String szCommonTagAPKName = project.rootDir.name + "_" + szShortVersionName + ".apk"
|
String szCommonTagAPKName = project.rootDir.name + "_" + szShortVersionName + ".apk"
|
||||||
println "CommonTagAPKName is : " + szCommonTagAPKName
|
println "CommonTagAPKName is : " + szCommonTagAPKName
|
||||||
|
|
||||||
//File outTagDir = new File(fWinBoLLStudioDir, "/${rootProject.name}/tag/")
|
|
||||||
File outTagDir = new File(fWinBoLLStudioDir, "/" + project.rootDir.name + "/${variant.buildType.name}/")
|
File outTagDir = new File(fWinBoLLStudioDir, "/" + project.rootDir.name + "/${variant.buildType.name}/")
|
||||||
// 创建目标路径目录
|
// 创建目标路径目录
|
||||||
if(!outTagDir.exists()) {
|
if(!outTagDir.exists()) {
|
||||||
@@ -284,13 +294,11 @@ android {
|
|||||||
if(outTagDir.exists()) {
|
if(outTagDir.exists()) {
|
||||||
File targetAPK = new File(outTagDir, "${szCommonTagAPKName}")
|
File targetAPK = new File(outTagDir, "${szCommonTagAPKName}")
|
||||||
if(targetAPK.exists()) {
|
if(targetAPK.exists()) {
|
||||||
// 标签版本APK文件已经存在,构建拷贝任务停止
|
|
||||||
println '如果是在调试 Stage 版应用包构建,请删除(注:在debug目录)现有的 Stage 应用包('+targetAPK.getAbsolutePath()+')。再编译一次。'
|
println '如果是在调试 Stage 版应用包构建,请删除(注:在debug目录)现有的 Stage 应用包('+targetAPK.getAbsolutePath()+')。再编译一次。'
|
||||||
assert (!targetAPK.exists())
|
assert (!targetAPK.exists())
|
||||||
// 可选择删除并继续输出APK文件
|
|
||||||
//delete targetAPK
|
|
||||||
}
|
}
|
||||||
// 复制一个备份
|
// 复制完整版APK
|
||||||
|
def debugFullApk = new File(outTagDir, outputFileName)
|
||||||
copy{
|
copy{
|
||||||
from file.outputFile
|
from file.outputFile
|
||||||
into outTagDir
|
into outTagDir
|
||||||
@@ -299,7 +307,16 @@ android {
|
|||||||
}
|
}
|
||||||
println "Output APK (Tags): "+ outTagDir.getAbsolutePath() + "/${outputFileName}"
|
println "Output APK (Tags): "+ outTagDir.getAbsolutePath() + "/${outputFileName}"
|
||||||
}
|
}
|
||||||
// 复制一个并重命名为短版本名
|
// 权限设为775。
|
||||||
|
if(debugFullApk.exists()){
|
||||||
|
exec {
|
||||||
|
commandLine 'chmod', '775', debugFullApk.absolutePath
|
||||||
|
}
|
||||||
|
println "Set file permission to 775 : ${debugFullApk.absolutePath}"
|
||||||
|
}
|
||||||
|
|
||||||
|
// 复制短版本名APK
|
||||||
|
def debugShortApk = new File(outTagDir, szCommonTagAPKName)
|
||||||
copy{
|
copy{
|
||||||
from file.outputFile
|
from file.outputFile
|
||||||
into outTagDir
|
into outTagDir
|
||||||
@@ -308,8 +325,13 @@ android {
|
|||||||
}
|
}
|
||||||
println "Output APK (Tags): "+ outTagDir.getAbsolutePath() + "/${szCommonTagAPKName}"
|
println "Output APK (Tags): "+ outTagDir.getAbsolutePath() + "/${szCommonTagAPKName}"
|
||||||
}
|
}
|
||||||
|
// 权限设为775
|
||||||
//不保存编译标志配置
|
if(debugShortApk.exists()){
|
||||||
|
exec {
|
||||||
|
commandLine 'chmod', '775', debugShortApk.absolutePath
|
||||||
|
}
|
||||||
|
println "Set file permission to 775 : ${debugShortApk.absolutePath}"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -328,6 +350,13 @@ android {
|
|||||||
}
|
}
|
||||||
println "Output APK (Common): " + outCommonDir.getAbsolutePath() + "/${commandAPKName}"
|
println "Output APK (Common): " + outCommonDir.getAbsolutePath() + "/${commandAPKName}"
|
||||||
}
|
}
|
||||||
|
// 额外输出文件设置775权限
|
||||||
|
if(apkFile.exists()){
|
||||||
|
exec {
|
||||||
|
commandLine 'chmod', '775', apkFile.absolutePath
|
||||||
|
}
|
||||||
|
println "Set file permission to 775 : ${apkFile.absolutePath}"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -9,15 +9,15 @@ WinBoLL 手机源码计划,旨在通过核心项目 WinBoLL 构建手机端与
|
|||||||
#### **仓库类型:功能说明**
|
#### **仓库类型:功能说明**
|
||||||
☆ 基础项目分支 WinBoLL:手机端安卓应用开发基础模板。
|
☆ 基础项目分支 WinBoLL:手机端安卓应用开发基础模板。
|
||||||
☆ 应用项目分支 APPBase、AES、PowerBell、Positions**:安卓应用单一管理系列项目。
|
☆ 应用项目分支 APPBase、AES、PowerBell、Positions**:安卓应用单一管理系列项目。
|
||||||
☆ 源码汇总管理 Projects_Keeper**:各类分支源码合并存档,不适宜作为开发库使用。
|
☆ 源码汇总管理 OriginMaster**:各类分支源码合并存档,不适宜作为开发库使用。
|
||||||
|
|
||||||
### 3. 源码合并管理推送路线图
|
### 3. 源码合并管理推送路线图
|
||||||
⚠️ **注意**:仅仅展示不同应用模块源码的综合管理路线。分支合并操作时,必须具备 Git 管理经验。
|
⚠️ **注意**:仅仅展示不同应用模块源码的综合管理路线。分支合并操作时,必须具备 Git 管理经验。
|
||||||
|
|
||||||
★ WinBoLL → APPBase → Projects_Keeper
|
★ WinBoLL → APPBase → OriginMaster
|
||||||
★ WinBoLL → AES → Projects_Keeper
|
★ WinBoLL → AES → OriginMaster
|
||||||
★ WinBoLL → PowerBell → Projects_Keeper
|
★ WinBoLL → PowerBell → OriginMaster
|
||||||
★ WinBoLL → Positions → Projects_Keeper
|
★ WinBoLL → Positions → OriginMaster
|
||||||
|
|
||||||
## 二、WinBoLL 项目核心信息
|
## 二、WinBoLL 项目核心信息
|
||||||
|
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ WinBoLL AndroidX 可视化元素类库。
|
|||||||
|
|
||||||
1. Fork 本仓库
|
1. Fork 本仓库
|
||||||
2. 新建 Feat_xxx 分支
|
2. 新建 Feat_xxx 分支
|
||||||
3. 提交代码 : ZhanGSKen(ZhanGSKen<zhangsken@188.com>)
|
3. 提交代码 : ZhanGSKen(ZhanGSKen<ZhanGSKen@QQ.COM>)
|
||||||
4. 新建 Pull Request
|
4. 新建 Pull Request
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -26,23 +26,27 @@ android {
|
|||||||
applicationId "cc.winboll.studio.aes"
|
applicationId "cc.winboll.studio.aes"
|
||||||
minSdkVersion 26
|
minSdkVersion 26
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 1
|
//1. Android 官方规则
|
||||||
|
//- versionCode 类型:int 整型
|
||||||
|
//- Java int 最大值:2147483647
|
||||||
|
versionCode 1520000
|
||||||
// versionName 更新后需要手动设置
|
// versionName 更新后需要手动设置
|
||||||
// 项目模块目录的 build.gradle 文件的 stageCount=0
|
// 项目模块目录的 build.gradle 文件的 stageCount=0
|
||||||
// Gradle编译环境下合起来的 versionName 就是 "${versionName}.0"
|
// Gradle编译环境下合起来的 versionName 就是 "${versionName}.0"
|
||||||
versionName "15.20"
|
versionName "15.21"
|
||||||
if(true) {
|
if(true) {
|
||||||
versionName = genVersionName("${versionName}")
|
versionName = genVersionName("${versionName}")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// 米盟 SDK
|
|
||||||
packagingOptions {
|
packagingOptions {
|
||||||
doNotStrip "*/*/libmimo_1011.so"
|
exclude 'META-INF/NOTICE.md'
|
||||||
|
exclude 'META-INF/LICENSE.md'
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':libaes')
|
api project(':libaes')
|
||||||
api fileTree(dir: 'libs', include: ['*.jar'])
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Tue May 12 13:11:28 HKT 2026
|
#Mon Jul 27 05:47:39 HKT 2026
|
||||||
stageCount=4
|
stageCount=2
|
||||||
libraryProject=libaes
|
libraryProject=libaes
|
||||||
baseVersion=15.20
|
baseVersion=15.21
|
||||||
publishVersion=15.20.3
|
publishVersion=15.21.1
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.20.4
|
baseBetaVersion=15.21.2
|
||||||
|
|||||||
@@ -120,6 +120,16 @@
|
|||||||
# JSch SSH组件
|
# JSch SSH组件
|
||||||
-keep class com.jcraft.jsch.** { *; }
|
-keep class com.jcraft.jsch.** { *; }
|
||||||
|
|
||||||
|
# JavaMail SMTP(邮件发送核心库,Release编译必须保留)
|
||||||
|
-dontwarn javax.mail.**
|
||||||
|
-keep class javax.mail.** { *; }
|
||||||
|
-keep class javax.mail.internet.** { *; }
|
||||||
|
-dontwarn javax.activation.**
|
||||||
|
-keep class javax.activation.** { *; }
|
||||||
|
-dontwarn com.sun.mail.**
|
||||||
|
-keep class com.sun.mail.** { *; }
|
||||||
|
-keepclassmembers class * extends javax.mail.Authenticator { *; }
|
||||||
|
|
||||||
# AndroidX 基础组件
|
# AndroidX 基础组件
|
||||||
-keep class androidx.appcompat.** { *; }
|
-keep class androidx.appcompat.** { *; }
|
||||||
-keep interface androidx.appcompat.** { *; }
|
-keep interface androidx.appcompat.** { *; }
|
||||||
|
|||||||
@@ -40,6 +40,8 @@
|
|||||||
|
|
||||||
<activity android:name=".AboutActivity"/>
|
<activity android:name=".AboutActivity"/>
|
||||||
|
|
||||||
|
<activity android:name=".SMTPSettingsActivity" android:exported="true"/>
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
@@ -65,7 +65,7 @@ public class AboutActivity extends BaseWinBoLLActivity {
|
|||||||
appInfo.setAppName(getString(R.string.app_name));
|
appInfo.setAppName(getString(R.string.app_name));
|
||||||
appInfo.setAppIcon(R.drawable.ic_winboll);
|
appInfo.setAppIcon(R.drawable.ic_winboll);
|
||||||
appInfo.setAppDescription(getString(R.string.app_description));
|
appInfo.setAppDescription(getString(R.string.app_description));
|
||||||
appInfo.setAppGitName("AES");
|
appInfo.setAppGitName("WinBoLL");
|
||||||
appInfo.setAppGitOwner("Studio");
|
appInfo.setAppGitOwner("Studio");
|
||||||
appInfo.setAppGitAPPBranch(branchName);
|
appInfo.setAppGitAPPBranch(branchName);
|
||||||
appInfo.setAppGitAPPSubProjectFolder(branchName);
|
appInfo.setAppGitAPPSubProjectFolder(branchName);
|
||||||
|
|||||||
@@ -5,10 +5,14 @@ package cc.winboll.studio.aes;
|
|||||||
* @Date 2024/06/13 19:03:58
|
* @Date 2024/06/13 19:03:58
|
||||||
* @Describe AES应用类
|
* @Describe AES应用类
|
||||||
*/
|
*/
|
||||||
import android.view.Gravity;
|
import cc.winboll.studio.libaes.utils.AESThemeUtil;
|
||||||
import cc.winboll.studio.libaes.utils.WinBoLLActivityManager;
|
import cc.winboll.studio.libaes.utils.WinBoLLActivityManager;
|
||||||
|
import cc.winboll.studio.libappbase.CrashActivity;
|
||||||
import cc.winboll.studio.libappbase.GlobalApplication;
|
import cc.winboll.studio.libappbase.GlobalApplication;
|
||||||
import cc.winboll.studio.libappbase.ToastUtils;
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
import cc.winboll.studio.libappbase.utils.CrashHandleNotifyUtils;
|
||||||
|
import java.io.PrintWriter;
|
||||||
|
import java.io.StringWriter;
|
||||||
|
|
||||||
|
|
||||||
public class App extends GlobalApplication {
|
public class App extends GlobalApplication {
|
||||||
@@ -17,13 +21,25 @@ public class App extends GlobalApplication {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onCreate() {
|
public void onCreate() {
|
||||||
super.onCreate();
|
try {
|
||||||
setIsDebugging(BuildConfig.DEBUG);
|
super.onCreate();
|
||||||
//setIsDebugging(false);
|
ToastUtils.init(this);
|
||||||
WinBoLLActivityManager.init(this);
|
WinBoLLActivityManager.init(this);
|
||||||
|
AESThemeUtil.init(null);
|
||||||
|
} catch (Throwable e) {
|
||||||
|
StringWriter sw = new StringWriter();
|
||||||
|
PrintWriter pw = new PrintWriter(sw);
|
||||||
|
e.printStackTrace(pw);
|
||||||
|
pw.close();
|
||||||
|
String stackTraceStr = sw.toString();
|
||||||
|
CrashHandleNotifyUtils.handleUncaughtException(
|
||||||
|
this,
|
||||||
|
getPackageName(),
|
||||||
|
stackTraceStr,
|
||||||
|
CrashActivity.class
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
// 初始化 Toast 框架
|
|
||||||
ToastUtils.init(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
|||||||
@@ -84,11 +84,12 @@ public class MainActivity extends DrawerFragmentActivity {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public boolean onCreateOptionsMenu(Menu menu) {
|
public boolean onCreateOptionsMenu(Menu menu) {
|
||||||
|
super.onCreateOptionsMenu(menu);
|
||||||
getMenuInflater().inflate(R.menu.toolbar_main, menu);
|
getMenuInflater().inflate(R.menu.toolbar_main, menu);
|
||||||
// if(App.isDebugging()) {
|
// if(App.isDebugging()) {
|
||||||
// getMenuInflater().inflate(cc.winboll.studio.libaes.R.menu.toolbar_studio_debug, menu);
|
// getMenuInflater().inflate(cc.winboll.studio.libaes.R.menu.toolbar_studio_debug, menu);
|
||||||
// }
|
// }
|
||||||
return super.onCreateOptionsMenu(menu);
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
@@ -182,6 +183,8 @@ public class MainActivity extends DrawerFragmentActivity {
|
|||||||
} else if (nItemId == R.id.item_settings) {
|
} else if (nItemId == R.id.item_settings) {
|
||||||
Intent intent = new Intent(this, SettingsActivity.class);
|
Intent intent = new Intent(this, SettingsActivity.class);
|
||||||
startActivity(intent);
|
startActivity(intent);
|
||||||
|
} else if (nItemId == R.id.item_smtp_settings) {
|
||||||
|
WinBoLLActivityManager.getInstance().startWinBoLLActivity(this, SMTPSettingsActivity.class);
|
||||||
} else if (nItemId == R.id.item_about) {
|
} else if (nItemId == R.id.item_about) {
|
||||||
// Intent intent = new Intent(this, AboutActivity.class);
|
// Intent intent = new Intent(this, AboutActivity.class);
|
||||||
// startActivity(intent);
|
// startActivity(intent);
|
||||||
|
|||||||
@@ -0,0 +1,51 @@
|
|||||||
|
package cc.winboll.studio.aes;
|
||||||
|
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.View;
|
||||||
|
import androidx.appcompat.widget.Toolbar;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen<zhangsken@qq.com>
|
||||||
|
* @Date 2026/07/16
|
||||||
|
* @Describe SMTP邮件设置窗口,使用SMTPConfigView控件进行配置操作
|
||||||
|
*/
|
||||||
|
public class SMTPSettingsActivity extends BaseWinBoLLActivity {
|
||||||
|
|
||||||
|
public static final String TAG = "SMTPSettingsActivity";
|
||||||
|
|
||||||
|
private Toolbar mToolbar;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTag() {
|
||||||
|
return TAG;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
setContentView(R.layout.activity_smtp_settings);
|
||||||
|
|
||||||
|
initToolbar();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initToolbar() {
|
||||||
|
LogUtils.d(TAG, "initToolbar() 开始初始化");
|
||||||
|
mToolbar = findViewById(R.id.toolbar);
|
||||||
|
if (mToolbar == null) {
|
||||||
|
LogUtils.e(TAG, "initToolbar() | Toolbar未找到");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
setSupportActionBar(mToolbar);
|
||||||
|
mToolbar.setSubtitle(getTag());
|
||||||
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
|
mToolbar.setNavigationOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
LogUtils.d(TAG, "导航栏 点击返回按钮");
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
LogUtils.d(TAG, "initToolbar() 配置完成");
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,11 +1,7 @@
|
|||||||
package cc.winboll.studio.aes;
|
package cc.winboll.studio.aes;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
import android.content.Intent;
|
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import androidx.annotation.NonNull;
|
|
||||||
import androidx.annotation.Nullable;
|
|
||||||
import cc.winboll.studio.libaes.views.ADsControlView;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
@@ -20,7 +16,7 @@ public class SettingsActivity extends Activity {
|
|||||||
protected void onCreate(Bundle savedInstanceState) {
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
super.onCreate(savedInstanceState);
|
super.onCreate(savedInstanceState);
|
||||||
setContentView(R.layout.activity_settings);
|
setContentView(R.layout.activity_settings);
|
||||||
ADsControlView adsControlView = (ADsControlView) findViewById(R.id.ads_control_view);
|
//ADsControlView adsControlView = (ADsControlView) findViewById(R.id.ads_control_view);
|
||||||
|
|
||||||
// adsControlView.setOnAdsModeSelectedListener(new ADsControlView.OnAdsModeSelectedListener() {
|
// adsControlView.setOnAdsModeSelectedListener(new ADsControlView.OnAdsModeSelectedListener() {
|
||||||
// @Override
|
// @Override
|
||||||
|
|||||||
@@ -6,12 +6,5 @@
|
|||||||
android:layout_width="match_parent"
|
android:layout_width="match_parent"
|
||||||
android:layout_height="match_parent" android:background="@drawable/bg_container_border">
|
android:layout_height="match_parent" android:background="@drawable/bg_container_border">
|
||||||
|
|
||||||
<cc.winboll.studio.libaes.views.ADsControlView
|
|
||||||
android:id="@+id/ads_control_view"
|
|
||||||
android:layout_width="match_parent"
|
|
||||||
android:layout_height="wrap_content"
|
|
||||||
android:background="@drawable/bg_frame"
|
|
||||||
android:padding="10dp"/>
|
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,24 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="@drawable/bg_container_border">
|
||||||
|
|
||||||
|
<cc.winboll.studio.libaes.views.ASupportToolbar
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:id="@+id/toolbar"/>
|
||||||
|
|
||||||
|
<ScrollView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<cc.winboll.studio.libaes.views.SMTPConfigView
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"/>
|
||||||
|
|
||||||
|
</ScrollView>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
@@ -35,6 +35,9 @@
|
|||||||
<item
|
<item
|
||||||
android:id="@+id/item_settings"
|
android:id="@+id/item_settings"
|
||||||
android:title="Settings"/>
|
android:title="Settings"/>
|
||||||
|
<item
|
||||||
|
android:id="@+id/item_smtp_settings"
|
||||||
|
android:title="SMTP设置"/>
|
||||||
<item
|
<item
|
||||||
android:id="@+id/item_about"
|
android:id="@+id/item_about"
|
||||||
android:title="About"/>
|
android:title="About"/>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="MyDebugActivityTheme" parent="Theme.AppCompat.NoActionBar">
|
<style name="MyDebugActivityTheme" parent="Theme.AppCompat.NoActionBar">
|
||||||
<item name="android:statusBarColor">@color/toolbarBackgroundColor</item>
|
<item name="android:statusBarColor">?attr/colorPrimaryDark</item>
|
||||||
<item name="colorTittle">@color/mainWindowTextColor</item>
|
<item name="colorTittle">@color/mainWindowTextColor</item>
|
||||||
<item name="colorTittleBackgound">@color/toolbarBackgroundColor</item>
|
<item name="colorTittleBackgound">@color/toolbarBackgroundColor</item>
|
||||||
<item name="colorText">@color/debugTextColor</item>
|
<item name="colorText">@color/debugTextColor</item>
|
||||||
|
|||||||
@@ -5,7 +5,7 @@
|
|||||||
</style>
|
</style>
|
||||||
|
|
||||||
<style name="MyDebugActivityTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
<style name="MyDebugActivityTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||||||
<item name="android:statusBarColor">@color/toolbarBackgroundColor</item>
|
<item name="android:statusBarColor">?attr/colorPrimaryDark</item>
|
||||||
<item name="colorTittle">@color/mainWindowTextColor</item>
|
<item name="colorTittle">@color/mainWindowTextColor</item>
|
||||||
<item name="colorTittleBackgound">@color/toolbarBackgroundColor</item>
|
<item name="colorTittleBackgound">@color/toolbarBackgroundColor</item>
|
||||||
<item name="colorText">@color/debugTextColor</item>
|
<item name="colorText">@color/debugTextColor</item>
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ WinBoLL 安卓手机端安卓应用开发基础类库。
|
|||||||
|
|
||||||
1. Fork 本仓库
|
1. Fork 本仓库
|
||||||
2. 新建 Feat_xxx 分支
|
2. 新建 Feat_xxx 分支
|
||||||
3. 提交代码 : ZhanGSKen(ZhanGSKen<zhangsken@188.com>)
|
3. 提交代码 : ZhanGSKen(ZhanGSKen<ZhanGSKen@QQ.COM>)
|
||||||
4. 新建 Pull Request
|
4. 新建 Pull Request
|
||||||
|
|
||||||
|
|
||||||
|
|||||||
@@ -26,11 +26,14 @@ android {
|
|||||||
applicationId "cc.winboll.studio.appbase"
|
applicationId "cc.winboll.studio.appbase"
|
||||||
minSdkVersion 26
|
minSdkVersion 26
|
||||||
targetSdkVersion 30
|
targetSdkVersion 30
|
||||||
versionCode 1
|
//1. Android 官方规则
|
||||||
|
//- versionCode 类型:int 整型
|
||||||
|
//- Java int 最大值:2147483647
|
||||||
|
versionCode 1520000
|
||||||
// versionName 更新后需要手动设置
|
// versionName 更新后需要手动设置
|
||||||
// .winboll/winbollBuildProps.properties 文件的 stageCount=0
|
// .winboll/winbollBuildProps.properties 文件的 stageCount=0
|
||||||
// Gradle编译环境下合起来的 versionName 就是 "${versionName}.0"
|
// Gradle编译环境下合起来的 versionName 就是 "${versionName}.0"
|
||||||
versionName "15.20"
|
versionName "15.21"
|
||||||
if(true) {
|
if(true) {
|
||||||
versionName = genVersionName("${versionName}")
|
versionName = genVersionName("${versionName}")
|
||||||
}
|
}
|
||||||
@@ -41,10 +44,20 @@ android {
|
|||||||
sourceCompatibility JavaVersion.VERSION_1_7
|
sourceCompatibility JavaVersion.VERSION_1_7
|
||||||
targetCompatibility JavaVersion.VERSION_1_7
|
targetCompatibility JavaVersion.VERSION_1_7
|
||||||
}
|
}
|
||||||
|
packagingOptions {
|
||||||
|
exclude 'META-INF/LICENSE.md'
|
||||||
|
exclude 'META-INF/LICENSE.txt'
|
||||||
|
exclude 'META-INF/NOTICE.md'
|
||||||
|
exclude 'META-INF/NOTICE.txt'
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
dependencies {
|
dependencies {
|
||||||
api project(':libappbase')
|
api project(':libappbase')
|
||||||
|
|
||||||
|
// JavaMail SMTP (Android兼容版)
|
||||||
|
api 'com.sun.mail:android-mail:1.6.7'
|
||||||
|
api 'com.sun.mail:android-activation:1.6.7'
|
||||||
|
|
||||||
api fileTree(dir: 'libs', include: ['*.jar'])
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#Created by .winboll/winboll_app_build.gradle
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
#Tue May 12 09:17:15 HKT 2026
|
#Thu Jul 23 19:08:15 HKT 2026
|
||||||
stageCount=10
|
stageCount=5
|
||||||
libraryProject=libappbase
|
libraryProject=libappbase
|
||||||
baseVersion=15.20
|
baseVersion=15.21
|
||||||
publishVersion=15.20.9
|
publishVersion=15.21.4
|
||||||
buildCount=0
|
buildCount=0
|
||||||
baseBetaVersion=15.20.10
|
baseBetaVersion=15.21.5
|
||||||
|
|||||||
@@ -73,6 +73,10 @@
|
|||||||
-dontwarn java.util.function.**
|
-dontwarn java.util.function.**
|
||||||
|
|
||||||
# ============================== 第三方框架规则 ==============================
|
# ============================== 第三方框架规则 ==============================
|
||||||
|
# JavaMail(libaes SMTPConfigView依赖)
|
||||||
|
-keep class javax.mail.** { *; }
|
||||||
|
-dontwarn javax.mail.**
|
||||||
|
|
||||||
# Retrofit + OkHttp
|
# Retrofit + OkHttp
|
||||||
-keep class retrofit2.** { *; }
|
-keep class retrofit2.** { *; }
|
||||||
-keep interface retrofit2.** { *; }
|
-keep interface retrofit2.** { *; }
|
||||||
|
|||||||
@@ -1,14 +1,15 @@
|
|||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest
|
||||||
xmlns:tools="http://schemas.android.com/tools" >
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools">
|
||||||
|
|
||||||
|
<!-- 拥有完全的网络访问权限 -->
|
||||||
|
<uses-permission android:name="android.permission.INTERNET"/>
|
||||||
|
|
||||||
<application
|
<application
|
||||||
tools:replace="android:icon"
|
tools:replace="android:icon"
|
||||||
android:icon="@drawable/ic_winboll_beta">
|
android:icon="@drawable/ic_winboll_beta">
|
||||||
|
|
||||||
<!-- Put flavor specific code here -->
|
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|
||||||
@@ -22,15 +22,17 @@
|
|||||||
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation">
|
android:configChanges="screenSize|smallestScreenSize|screenLayout|orientation">
|
||||||
|
|
||||||
<intent-filter>
|
<intent-filter>
|
||||||
|
|
||||||
<action android:name="android.intent.action.MAIN"/>
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
|
|
||||||
<category android:name="android.intent.category.LAUNCHER"/>
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
|
|
||||||
<category android:name="android.intent.category.DEFAULT"/>
|
<category android:name="android.intent.category.DEFAULT"/>
|
||||||
|
|
||||||
</intent-filter>
|
</intent-filter>
|
||||||
|
|
||||||
</activity>
|
</activity>
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
<activity
|
<activity
|
||||||
android:name=".Main2Activity"
|
android:name=".Main2Activity"
|
||||||
android:label="@string/app_name"
|
android:label="@string/app_name"
|
||||||
@@ -52,6 +54,9 @@
|
|||||||
|
|
||||||
<activity android:name=".AboutActivity"/>
|
<activity android:name=".AboutActivity"/>
|
||||||
|
|
||||||
|
<activity android:name="cc.winboll.studio.appbase.develop.APPExcetionMailSettingsActivity"
|
||||||
|
android:exported="true"/>
|
||||||
|
|
||||||
</application>
|
</application>
|
||||||
|
|
||||||
</manifest>
|
</manifest>
|
||||||
|
|||||||
@@ -1,8 +1,13 @@
|
|||||||
package cc.winboll.studio.appbase;
|
package cc.winboll.studio.appbase;
|
||||||
|
|
||||||
|
import cc.winboll.studio.libappbase.CrashActivity;
|
||||||
import cc.winboll.studio.libappbase.GlobalApplication;
|
import cc.winboll.studio.libappbase.GlobalApplication;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
import cc.winboll.studio.libappbase.ToastUtils;
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
import cc.winboll.studio.libappbase.BuildConfig;
|
import cc.winboll.studio.libappbase.utils.APPMSGMailUtils;
|
||||||
|
import cc.winboll.studio.libappbase.utils.CrashHandleNotifyUtils;
|
||||||
|
import java.io.PrintWriter;
|
||||||
|
import java.io.StringWriter;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @Author ZhanGSKen<zhangsken@qq.com>
|
* @Author ZhanGSKen<zhangsken@qq.com>
|
||||||
@@ -15,22 +20,55 @@ public class App extends GlobalApplication {
|
|||||||
/** 当前应用类的日志 TAG(用于调试输出,标识日志来源) */
|
/** 当前应用类的日志 TAG(用于调试输出,标识日志来源) */
|
||||||
public static final String TAG = "App";
|
public static final String TAG = "App";
|
||||||
|
|
||||||
|
/** SMTP配置 SharedPreferences 名称 */
|
||||||
|
private static final String PREF_NAME = "smtp_config";
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 应用创建时回调(全局初始化入口)
|
* 应用创建时回调(全局初始化入口)
|
||||||
* 在应用进程启动时执行,仅调用一次,用于初始化全局工具类、第三方库等
|
* 在应用进程启动时执行,仅调用一次,用于初始化全局工具类、第三方库等
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
public void onCreate() {
|
public void onCreate() {
|
||||||
super.onCreate();
|
try {
|
||||||
// 如果应用不在调试状态,就根据编译类型设置调试状态
|
super.onCreate();
|
||||||
if (isDebugging() != true) {
|
|
||||||
setIsDebugging(BuildConfig.DEBUG);
|
// 初始化 Toast 工具类(传入应用全局上下文,确保 Toast 可在任意地方调用)
|
||||||
}
|
ToastUtils.init(getApplicationContext());
|
||||||
// release 版调试码
|
|
||||||
//setIsDebugging(!BuildConfig.DEBUG);
|
// 调试异常捕获
|
||||||
|
final String errorMsg = "初始化异常捕获调试信息,这个是调试异常捕获的测试数据。";
|
||||||
// 初始化 Toast 工具类(传入应用全局上下文,确保 Toast 可在任意地方调用)
|
LogUtils.e(TAG, errorMsg);
|
||||||
ToastUtils.init(getApplicationContext());
|
throw new IllegalArgumentException(errorMsg);
|
||||||
|
|
||||||
|
} catch (Throwable e) {
|
||||||
|
StringWriter sw = new StringWriter();
|
||||||
|
PrintWriter pw = new PrintWriter(sw);
|
||||||
|
e.printStackTrace(pw);
|
||||||
|
pw.close();
|
||||||
|
String stackTraceStr = sw.toString();
|
||||||
|
|
||||||
|
// 发送异常信息邮箱。
|
||||||
|
sendExceptionMail(stackTraceStr);
|
||||||
|
|
||||||
|
// 前台通知栏提醒。
|
||||||
|
CrashHandleNotifyUtils.handleUncaughtException(
|
||||||
|
this,
|
||||||
|
getPackageName(),
|
||||||
|
stackTraceStr,
|
||||||
|
CrashActivity.class
|
||||||
|
);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 发送异常报告邮件
|
||||||
|
* 读取SMTP配置,若配置完整则在子线程发送异常堆栈邮件
|
||||||
|
* @param stackTraceStr 异常堆栈信息
|
||||||
|
*/
|
||||||
|
private void sendExceptionMail(final String stackTraceStr) {
|
||||||
|
String subject = "Exception Report - " + getPackageName();
|
||||||
|
String recipients = APPMSGMailUtils.getRecipient(this);
|
||||||
|
APPMSGMailUtils.sendMail(this, subject, stackTraceStr, recipients);
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@@ -45,4 +83,3 @@ public class App extends GlobalApplication {
|
|||||||
ToastUtils.release();
|
ToastUtils.release();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -1,8 +1,12 @@
|
|||||||
package cc.winboll.studio.appbase;
|
package cc.winboll.studio.appbase;
|
||||||
|
|
||||||
import android.app.Activity;
|
import android.app.Activity;
|
||||||
|
import android.content.ComponentName;
|
||||||
import android.content.Context;
|
import android.content.Context;
|
||||||
import android.content.Intent;
|
import android.content.Intent;
|
||||||
|
import android.content.pm.ShortcutInfo;
|
||||||
|
import android.content.pm.ShortcutManager;
|
||||||
|
import android.graphics.drawable.Icon;
|
||||||
import android.net.Uri;
|
import android.net.Uri;
|
||||||
import android.os.Bundle;
|
import android.os.Bundle;
|
||||||
import android.view.Menu;
|
import android.view.Menu;
|
||||||
@@ -11,6 +15,7 @@ import android.view.View;
|
|||||||
import android.widget.Toolbar;
|
import android.widget.Toolbar;
|
||||||
import cc.winboll.studio.appbase.R;
|
import cc.winboll.studio.appbase.R;
|
||||||
import cc.winboll.studio.appbase.model.TestBean;
|
import cc.winboll.studio.appbase.model.TestBean;
|
||||||
|
import cc.winboll.studio.appbase.develop.APPExcetionMailSettingsActivity;
|
||||||
import cc.winboll.studio.libappbase.LogActivity;
|
import cc.winboll.studio.libappbase.LogActivity;
|
||||||
import cc.winboll.studio.libappbase.LogUtils;
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
import cc.winboll.studio.libappbase.ToastUtils;
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
@@ -45,6 +50,7 @@ public class MainActivity extends Activity {
|
|||||||
setActionBar(mToolbar); // 将 Toolbar 替代系统默认 ActionBar
|
setActionBar(mToolbar); // 将 Toolbar 替代系统默认 ActionBar
|
||||||
|
|
||||||
initTestData();
|
initTestData();
|
||||||
|
setupShortcuts();
|
||||||
}
|
}
|
||||||
|
|
||||||
void initTestData() {
|
void initTestData() {
|
||||||
@@ -60,6 +66,36 @@ public class MainActivity extends Activity {
|
|||||||
return "/BaseBaen/"+TestBean.class.getName()+".json";
|
return "/BaseBaen/"+TestBean.class.getName()+".json";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 注册桌面图标静态快捷方式
|
||||||
|
* 长按桌面图标后显示快捷菜单,点击可直接打开异常邮件接收设置页面
|
||||||
|
*/
|
||||||
|
private void setupShortcuts() {
|
||||||
|
if (!"cc.winboll.studio.appbase.beta".equals(getPackageName())) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
ShortcutManager shortcutManager = getSystemService(ShortcutManager.class);
|
||||||
|
if (shortcutManager == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Intent intent = new Intent(this, APPExcetionMailSettingsActivity.class);
|
||||||
|
intent.setAction(Intent.ACTION_VIEW);
|
||||||
|
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
|
||||||
|
ShortcutInfo shortcut = new ShortcutInfo.Builder(this, "exception_mail_settings")
|
||||||
|
.setShortLabel("邮件设置")
|
||||||
|
.setLongLabel("异常邮件接收设置")
|
||||||
|
.setIcon(Icon.createWithResource(this, R.drawable.ic_winboll))
|
||||||
|
.setIntent(intent)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
shortcutManager.setDynamicShortcuts(
|
||||||
|
java.util.Arrays.asList(shortcut)
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 创建菜单时回调(加载工具栏菜单)
|
* 创建菜单时回调(加载工具栏菜单)
|
||||||
* 初始化 ActionBar 菜单,加载自定义菜单布局
|
* 初始化 ActionBar 菜单,加载自定义菜单布局
|
||||||
|
|||||||
@@ -0,0 +1,27 @@
|
|||||||
|
package cc.winboll.studio.appbase.develop;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import cc.winboll.studio.appbase.R;
|
||||||
|
import cc.winboll.studio.libappbase.views.SMTPConfigView;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author 豆包&BigPickle&MiMo&ZhanGSKen<zhangsken@qq.com>
|
||||||
|
* @Date 2026/07/21 12:44
|
||||||
|
* @Describe 应用异常信息邮件接收账号设置
|
||||||
|
* 使用libaes的SMTPConfigView控件配置SMTP服务器参数
|
||||||
|
*/
|
||||||
|
public class APPExcetionMailSettingsActivity extends Activity {
|
||||||
|
|
||||||
|
public static final String TAG = "APPExcetionMailSettingsActivity";
|
||||||
|
|
||||||
|
private SMTPConfigView mSMTPConfigView;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
setContentView(R.layout.activity_appexcetionmailsettings);
|
||||||
|
|
||||||
|
mSMTPConfigView = (SMTPConfigView) findViewById(R.id.smtp_config_view);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -2,8 +2,8 @@ package cc.winboll.studio.appbase.model;
|
|||||||
|
|
||||||
import android.util.JsonReader;
|
import android.util.JsonReader;
|
||||||
import android.util.JsonWriter;
|
import android.util.JsonWriter;
|
||||||
import cc.winboll.studio.libappbase.BaseBean;
|
|
||||||
import cc.winboll.studio.libappbase.LogUtils;
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.models.libs1520000.BaseBean;
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -12,6 +12,6 @@
|
|||||||
android:layout_height="wrap_content"
|
android:layout_height="wrap_content"
|
||||||
android:text="Main2Activity"
|
android:text="Main2Activity"
|
||||||
android:textSize="24sp"
|
android:textSize="24sp"
|
||||||
android:textColor="@color/gray_900"/>
|
android:textColor="#212121"/>
|
||||||
|
|
||||||
</LinearLayout>
|
</LinearLayout>
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ScrollView
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:background="#FAFAFA">
|
||||||
|
|
||||||
|
<cc.winboll.studio.libappbase.views.SMTPConfigView
|
||||||
|
android:id="@+id/smtp_config_view"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"/>
|
||||||
|
|
||||||
|
</ScrollView>
|
||||||
@@ -9,6 +9,6 @@
|
|||||||
<item name="colorTittleBackgound">?attr/toolbarBackgroundColor</item>
|
<item name="colorTittleBackgound">?attr/toolbarBackgroundColor</item>
|
||||||
<item name="colorText">?attr/debugTextColor</item>
|
<item name="colorText">?attr/debugTextColor</item>
|
||||||
<item name="colorTextBackgound">?attr/mainWindowDarkBackgroundColor</item>
|
<item name="colorTextBackgound">?attr/mainWindowDarkBackgroundColor</item>
|
||||||
<item name="toolbarTextColor">@color/toolbarTextColor</item>
|
<item name="toolbarTextColor">#FF000000</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
@@ -9,6 +9,6 @@
|
|||||||
<item name="colorTittleBackgound">?attr/toolbarBackgroundColor</item>
|
<item name="colorTittleBackgound">?attr/toolbarBackgroundColor</item>
|
||||||
<item name="colorText">?attr/debugTextColor</item>
|
<item name="colorText">?attr/debugTextColor</item>
|
||||||
<item name="colorTextBackgound">?attr/mainWindowBackgroundColor</item>
|
<item name="colorTextBackgound">?attr/mainWindowBackgroundColor</item>
|
||||||
<item name="toolbarTextColor">@color/toolbarTextColor</item>
|
<item name="toolbarTextColor">#FF000000</item>
|
||||||
</style>
|
</style>
|
||||||
</resources>
|
</resources>
|
||||||
|
|||||||
@@ -0,0 +1 @@
|
|||||||
|
/build
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
# AutoNFC
|
||||||
|
|
||||||
|
#### 介绍
|
||||||
|
NFC 卡应用,主要管理 NFC 卡接触手机的动作响应,NFC 接触状态用于作为其他应用激活活动动作的启动令牌。
|
||||||
|
|
||||||
|
#### 软件架构
|
||||||
|
适配安卓应用 [AIDE Pro] 的 Gradle 编译结构。
|
||||||
|
也适配安卓应用 [AndroidIDE] 的 Gradle 编译结构。
|
||||||
|
|
||||||
|
|
||||||
|
#### Gradle 编译说明
|
||||||
|
调试版编译命令 :gradle assembleBetaDebug
|
||||||
|
阶段版编译命令 :bash .winboll/bashPublishAPKAddTag.sh autonfc
|
||||||
|
|
||||||
|
#### 使用说明
|
||||||
|
|
||||||
|
#### 参与贡献
|
||||||
|
|
||||||
|
1. Fork 本仓库
|
||||||
|
2. 新建 Feat_xxx 分支
|
||||||
|
3. 提交代码 : ZhanGSKen(ZhanGSKen<zhangsken@188.com>)
|
||||||
|
4. 新建 Pull Request
|
||||||
|
|
||||||
|
|
||||||
|
#### 特技
|
||||||
|
|
||||||
|
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
|
||||||
|
2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com)
|
||||||
|
3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目
|
||||||
|
4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目
|
||||||
|
5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help)
|
||||||
|
6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
||||||
|
|
||||||
|
#### 参考文档
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
@@ -0,0 +1,119 @@
|
|||||||
|
apply plugin: 'com.android.application'
|
||||||
|
apply from: '../.winboll/winboll_app_build.gradle'
|
||||||
|
apply from: '../.winboll/winboll_lint_build.gradle'
|
||||||
|
|
||||||
|
def genVersionName(def versionName){
|
||||||
|
// 检查编译标志位配置
|
||||||
|
assert (winbollBuildProps['stageCount'] != null)
|
||||||
|
assert (winbollBuildProps['baseVersion'] != null)
|
||||||
|
// 保存基础版本号
|
||||||
|
winbollBuildProps.setProperty("baseVersion", "${versionName}");
|
||||||
|
//保存编译标志配置
|
||||||
|
FileOutputStream fos = new FileOutputStream(winbollBuildPropsFile)
|
||||||
|
winbollBuildProps.store(fos, "${winbollBuildPropsDesc}");
|
||||||
|
fos.close();
|
||||||
|
|
||||||
|
// 返回编译版本号
|
||||||
|
return "${versionName}." + winbollBuildProps['stageCount']
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
// 适配MIUI12
|
||||||
|
compileSdkVersion 30
|
||||||
|
buildToolsVersion "30.0.3"
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
applicationId "cc.winboll.studio.autonfc"
|
||||||
|
minSdkVersion 23
|
||||||
|
// 适配MIUI12
|
||||||
|
targetSdkVersion 30
|
||||||
|
versionCode 1
|
||||||
|
// versionName 更新后需要手动设置
|
||||||
|
// .winboll/winbollBuildProps.properties 文件的 stageCount=0
|
||||||
|
// Gradle编译环境下合起来的 versionName 就是 "${versionName}.0"
|
||||||
|
versionName "15.11"
|
||||||
|
if(true) {
|
||||||
|
versionName = genVersionName("${versionName}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 米盟 SDK
|
||||||
|
packagingOptions {
|
||||||
|
doNotStrip "*/*/libmimo_1011.so"
|
||||||
|
}
|
||||||
|
|
||||||
|
sourceSets {
|
||||||
|
main {
|
||||||
|
jniLibs.srcDirs = ['libs'] // 若SO库放在libs目录下
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
api 'com.google.code.gson:gson:2.10.1'
|
||||||
|
|
||||||
|
// 下拉控件
|
||||||
|
api 'com.baoyz.pullrefreshlayout:library:1.2.0'
|
||||||
|
|
||||||
|
// SSH
|
||||||
|
api 'com.jcraft:jsch:0.1.55'
|
||||||
|
// Html 解析
|
||||||
|
api 'org.jsoup:jsoup:1.13.1'
|
||||||
|
// 二维码类库
|
||||||
|
api 'com.google.zxing:core:3.4.1'
|
||||||
|
api 'com.journeyapps:zxing-android-embedded:3.6.0'
|
||||||
|
// 应用介绍页类库
|
||||||
|
api 'io.github.medyo:android-about-page:2.0.0'
|
||||||
|
// 网络连接类库
|
||||||
|
api 'com.squareup.okhttp3:okhttp:4.4.1'
|
||||||
|
// OkHttp网络请求
|
||||||
|
implementation 'com.squareup.okhttp3:okhttp:3.14.9'
|
||||||
|
// FastJSON解析
|
||||||
|
implementation 'com.alibaba:fastjson:1.2.76'
|
||||||
|
|
||||||
|
// AndroidX 类库
|
||||||
|
/*api 'androidx.appcompat:appcompat:1.1.0'
|
||||||
|
//api 'com.google.android.material:material:1.4.0'
|
||||||
|
//api 'androidx.viewpager:viewpager:1.0.0'
|
||||||
|
//api 'androidx.vectordrawable:vectordrawable:1.1.0'
|
||||||
|
//api 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
|
||||||
|
//api 'androidx.fragment:fragment:1.1.0'*/
|
||||||
|
|
||||||
|
|
||||||
|
// 米盟
|
||||||
|
api 'com.miui.zeus:mimo-ad-sdk:5.3.+'//请使用最新版sdk
|
||||||
|
//注意:以下5个库必须要引入
|
||||||
|
//implementation 'androidx.appcompat:appcompat:1.4.1'
|
||||||
|
api 'androidx.recyclerview:recyclerview:1.0.0'
|
||||||
|
api 'com.google.code.gson:gson:2.8.5'
|
||||||
|
api 'com.github.bumptech.glide:glide:4.9.0'
|
||||||
|
//annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
|
||||||
|
|
||||||
|
implementation "androidx.annotation:annotation:1.3.0"
|
||||||
|
implementation "androidx.core:core:1.6.0"
|
||||||
|
implementation "androidx.drawerlayout:drawerlayout:1.1.1"
|
||||||
|
implementation "androidx.preference:preference:1.1.1"
|
||||||
|
implementation "androidx.viewpager:viewpager:1.0.0"
|
||||||
|
implementation "com.google.android.material:material:1.4.0"
|
||||||
|
implementation "com.google.guava:guava:24.1-jre"
|
||||||
|
/*
|
||||||
|
implementation "io.noties.markwon:core:$markwonVersion"
|
||||||
|
implementation "io.noties.markwon:ext-strikethrough:$markwonVersion"
|
||||||
|
implementation "io.noties.markwon:linkify:$markwonVersion"
|
||||||
|
implementation "io.noties.markwon:recycler:$markwonVersion"
|
||||||
|
*/
|
||||||
|
implementation 'com.termux:terminal-emulator:0.118.0'
|
||||||
|
implementation 'com.termux:terminal-view:0.118.0'
|
||||||
|
implementation 'com.termux:termux-shared:0.118.0'
|
||||||
|
|
||||||
|
// WinBoLL库 nexus.winboll.cc 地址
|
||||||
|
api 'cc.winboll.studio:libaes:15.15.2'
|
||||||
|
api 'cc.winboll.studio:libappbase:15.15.11'
|
||||||
|
|
||||||
|
// WinBoLL备用库 jitpack.io 地址
|
||||||
|
//api 'com.github.ZhanGSKen:AES:aes-v15.15.7'
|
||||||
|
//api 'com.github.ZhanGSKen:APPBase:appbase-v15.15.4'
|
||||||
|
|
||||||
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
|
#Mon Mar 16 18:30:19 GMT 2026
|
||||||
|
stageCount=0
|
||||||
|
libraryProject=
|
||||||
|
baseVersion=15.11
|
||||||
|
publishVersion=15.0.0
|
||||||
|
buildCount=54
|
||||||
|
baseBetaVersion=15.0.1
|
||||||
@@ -0,0 +1,21 @@
|
|||||||
|
# Add project specific ProGuard rules here.
|
||||||
|
# You can control the set of applied configuration files using the
|
||||||
|
# proguardFiles setting in build.gradle.
|
||||||
|
#
|
||||||
|
# For more details, see
|
||||||
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||||
|
|
||||||
|
# If your project uses WebView with JS, uncomment the following
|
||||||
|
# and specify the fully qualified class name to the JavaScript interface
|
||||||
|
# class:
|
||||||
|
#-keepclassmembers class fqcn.of.javascript.interface.for.webview {
|
||||||
|
# public *;
|
||||||
|
#}
|
||||||
|
|
||||||
|
# Uncomment this to preserve the line number information for
|
||||||
|
# debugging stack traces.
|
||||||
|
#-keepattributes SourceFile,LineNumberTable
|
||||||
|
|
||||||
|
# If you keep the line number information, uncomment this to
|
||||||
|
# hide the original source file name.
|
||||||
|
#-renamesourcefileattribute SourceFile
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools" >
|
||||||
|
|
||||||
|
<application>
|
||||||
|
|
||||||
|
<!-- Put flavor specific code here -->
|
||||||
|
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
||||||
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<string name="app_name">AutoNFC✌</string>
|
||||||
|
|
||||||
|
</resources>
|
||||||
@@ -0,0 +1,51 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<manifest
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="cc.winboll.studio.autonfc">
|
||||||
|
|
||||||
|
<uses-permission android:name="android.permission.NFC"/>
|
||||||
|
|
||||||
|
<uses-feature
|
||||||
|
android:name="android.hardware.nfc"
|
||||||
|
android:required="true"/>
|
||||||
|
|
||||||
|
<application
|
||||||
|
android:allowBackup="true"
|
||||||
|
android:icon="@mipmap/ic_launcher"
|
||||||
|
android:roundIcon="@mipmap/ic_launcher_round"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:theme="@style/MyAppTheme"
|
||||||
|
android:resizeableActivity="true"
|
||||||
|
android:name=".App">
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".MainActivity"
|
||||||
|
android:label="@string/app_name">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".nfc.NFCInterfaceActivity"
|
||||||
|
android:launchMode="singleTop">
|
||||||
|
<intent-filter>
|
||||||
|
<action android:name="android.nfc.action.NDEF_DISCOVERED"/>
|
||||||
|
<category android:name="android.intent.category.DEFAULT"/>
|
||||||
|
<data android:mimeType="*/*"/>
|
||||||
|
</intent-filter>
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<!-- NFC 绑定服务 -->
|
||||||
|
<service
|
||||||
|
android:name=".nfc.AutoNFCService"
|
||||||
|
android:exported="false"/>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="android.max_aspect"
|
||||||
|
android:value="4.0"/>
|
||||||
|
|
||||||
|
</application>
|
||||||
|
</manifest>
|
||||||
|
|
||||||
@@ -0,0 +1,344 @@
|
|||||||
|
package cc.winboll.studio.autonfc;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.content.ClipData;
|
||||||
|
import android.content.ClipboardManager;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.content.pm.PackageInfo;
|
||||||
|
import android.content.res.Resources;
|
||||||
|
import android.graphics.Typeface;
|
||||||
|
import android.os.Build;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.Looper;
|
||||||
|
import android.text.TextUtils;
|
||||||
|
import android.util.Log;
|
||||||
|
import android.view.Gravity;
|
||||||
|
import android.view.Menu;
|
||||||
|
import android.view.MenuItem;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.HorizontalScrollView;
|
||||||
|
import android.widget.ScrollView;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import cc.winboll.studio.libappbase.GlobalApplication;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
import java.io.ByteArrayInputStream;
|
||||||
|
import java.io.ByteArrayOutputStream;
|
||||||
|
import java.io.Closeable;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileInputStream;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.io.OutputStream;
|
||||||
|
import java.lang.Thread.UncaughtExceptionHandler;
|
||||||
|
import java.text.DateFormat;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Arrays;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.LinkedHashMap;
|
||||||
|
import java.util.concurrent.atomic.AtomicBoolean;
|
||||||
|
|
||||||
|
public class App extends GlobalApplication {
|
||||||
|
|
||||||
|
private static Handler MAIN_HANDLER = new Handler(Looper.getMainLooper());
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCreate() {
|
||||||
|
super.onCreate();
|
||||||
|
|
||||||
|
// 初始化 Toast 框架
|
||||||
|
// ToastUtils.init(this);
|
||||||
|
// // 设置 Toast 布局样式
|
||||||
|
// //ToastUtils.setView(R.layout.view_toast);
|
||||||
|
// ToastUtils.setStyle(new WhiteToastStyle());
|
||||||
|
// ToastUtils.setGravity(Gravity.BOTTOM, 0, 200);
|
||||||
|
//
|
||||||
|
//CrashHandler.getInstance().registerGlobal(this);
|
||||||
|
//CrashHandler.getInstance().registerPart(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void write(InputStream input, OutputStream output) throws IOException {
|
||||||
|
byte[] buf = new byte[1024 * 8];
|
||||||
|
int len;
|
||||||
|
while ((len = input.read(buf)) != -1) {
|
||||||
|
output.write(buf, 0, len);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void write(File file, byte[] data) throws IOException {
|
||||||
|
File parent = file.getParentFile();
|
||||||
|
if (parent != null && !parent.exists()) parent.mkdirs();
|
||||||
|
|
||||||
|
ByteArrayInputStream input = new ByteArrayInputStream(data);
|
||||||
|
FileOutputStream output = new FileOutputStream(file);
|
||||||
|
try {
|
||||||
|
write(input, output);
|
||||||
|
} finally {
|
||||||
|
closeIO(input, output);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static String toString(InputStream input) throws IOException {
|
||||||
|
ByteArrayOutputStream output = new ByteArrayOutputStream();
|
||||||
|
write(input, output);
|
||||||
|
try {
|
||||||
|
return output.toString("UTF-8");
|
||||||
|
} finally {
|
||||||
|
closeIO(input, output);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void closeIO(Closeable... closeables) {
|
||||||
|
for (Closeable closeable : closeables) {
|
||||||
|
try {
|
||||||
|
if (closeable != null) closeable.close();
|
||||||
|
} catch (IOException ignored) {}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static class CrashHandler {
|
||||||
|
|
||||||
|
public static final UncaughtExceptionHandler DEFAULT_UNCAUGHT_EXCEPTION_HANDLER = Thread.getDefaultUncaughtExceptionHandler();
|
||||||
|
|
||||||
|
private static CrashHandler sInstance;
|
||||||
|
|
||||||
|
private PartCrashHandler mPartCrashHandler;
|
||||||
|
|
||||||
|
public static CrashHandler getInstance() {
|
||||||
|
if (sInstance == null) {
|
||||||
|
sInstance = new CrashHandler();
|
||||||
|
}
|
||||||
|
return sInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void registerGlobal(Context context) {
|
||||||
|
registerGlobal(context, null);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void registerGlobal(Context context, String crashDir) {
|
||||||
|
Thread.setDefaultUncaughtExceptionHandler(new UncaughtExceptionHandlerImpl(context.getApplicationContext(), crashDir));
|
||||||
|
}
|
||||||
|
|
||||||
|
public void unregister() {
|
||||||
|
Thread.setDefaultUncaughtExceptionHandler(DEFAULT_UNCAUGHT_EXCEPTION_HANDLER);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void registerPart(Context context) {
|
||||||
|
unregisterPart(context);
|
||||||
|
mPartCrashHandler = new PartCrashHandler(context.getApplicationContext());
|
||||||
|
MAIN_HANDLER.postAtFrontOfQueue(mPartCrashHandler);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void unregisterPart(Context context) {
|
||||||
|
if (mPartCrashHandler != null) {
|
||||||
|
mPartCrashHandler.isRunning.set(false);
|
||||||
|
mPartCrashHandler = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class PartCrashHandler implements Runnable {
|
||||||
|
|
||||||
|
private final Context mContext;
|
||||||
|
|
||||||
|
public AtomicBoolean isRunning = new AtomicBoolean(true);
|
||||||
|
|
||||||
|
public PartCrashHandler(Context context) {
|
||||||
|
this.mContext = context;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
while (isRunning.get()) {
|
||||||
|
try {
|
||||||
|
Looper.loop();
|
||||||
|
} catch (final Throwable e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
if (isRunning.get()) {
|
||||||
|
MAIN_HANDLER.post(new Runnable(){
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
Toast.makeText(mContext, e.toString(), Toast.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
} else {
|
||||||
|
if (e instanceof RuntimeException) {
|
||||||
|
throw (RuntimeException)e;
|
||||||
|
} else {
|
||||||
|
throw new RuntimeException(e);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static class UncaughtExceptionHandlerImpl implements UncaughtExceptionHandler {
|
||||||
|
|
||||||
|
private static DateFormat DATE_FORMAT = new SimpleDateFormat("yyyy_MM_dd-HH_mm_ss");
|
||||||
|
|
||||||
|
private final Context mContext;
|
||||||
|
|
||||||
|
private final File mCrashDir;
|
||||||
|
|
||||||
|
public UncaughtExceptionHandlerImpl(Context context, String crashDir) {
|
||||||
|
this.mContext = context;
|
||||||
|
this.mCrashDir = TextUtils.isEmpty(crashDir) ? new File(mContext.getExternalCacheDir(), "crash") : new File(crashDir);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void uncaughtException(Thread thread, Throwable throwable) {
|
||||||
|
try {
|
||||||
|
|
||||||
|
String log = buildLog(throwable);
|
||||||
|
writeLog(log);
|
||||||
|
|
||||||
|
try {
|
||||||
|
Intent intent = new Intent(mContext, CrashActivity.class);
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
intent.putExtra(Intent.EXTRA_TEXT, log);
|
||||||
|
mContext.startActivity(intent);
|
||||||
|
} catch (Throwable e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
writeLog(e.toString());
|
||||||
|
}
|
||||||
|
|
||||||
|
throwable.printStackTrace();
|
||||||
|
android.os.Process.killProcess(android.os.Process.myPid());
|
||||||
|
System.exit(0);
|
||||||
|
|
||||||
|
} catch (Throwable e) {
|
||||||
|
if (DEFAULT_UNCAUGHT_EXCEPTION_HANDLER != null) DEFAULT_UNCAUGHT_EXCEPTION_HANDLER.uncaughtException(thread, throwable);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String buildLog(Throwable throwable) {
|
||||||
|
String time = DATE_FORMAT.format(new Date());
|
||||||
|
|
||||||
|
String versionName = "unknown";
|
||||||
|
long versionCode = 0;
|
||||||
|
try {
|
||||||
|
PackageInfo packageInfo = mContext.getPackageManager().getPackageInfo(mContext.getPackageName(), 0);
|
||||||
|
versionName = packageInfo.versionName;
|
||||||
|
versionCode = Build.VERSION.SDK_INT >= 28 ? packageInfo.getLongVersionCode() : packageInfo.versionCode;
|
||||||
|
} catch (Throwable ignored) {}
|
||||||
|
|
||||||
|
LinkedHashMap<String, String> head = new LinkedHashMap<String, String>();
|
||||||
|
head.put("Time Of Crash", time);
|
||||||
|
head.put("Device", String.format("%s, %s", Build.MANUFACTURER, Build.MODEL));
|
||||||
|
head.put("Android Version", String.format("%s (%d)", Build.VERSION.RELEASE, Build.VERSION.SDK_INT));
|
||||||
|
head.put("App Version", String.format("%s (%d)", versionName, versionCode));
|
||||||
|
head.put("Kernel", getKernel());
|
||||||
|
head.put("Support Abis", Build.VERSION.SDK_INT >= 21 && Build.SUPPORTED_ABIS != null ? Arrays.toString(Build.SUPPORTED_ABIS): "unknown");
|
||||||
|
head.put("Fingerprint", Build.FINGERPRINT);
|
||||||
|
|
||||||
|
StringBuilder builder = new StringBuilder();
|
||||||
|
|
||||||
|
for (String key : head.keySet()) {
|
||||||
|
if (builder.length() != 0) builder.append("\n");
|
||||||
|
builder.append(key);
|
||||||
|
builder.append(" : ");
|
||||||
|
builder.append(head.get(key));
|
||||||
|
}
|
||||||
|
|
||||||
|
builder.append("\n\n");
|
||||||
|
builder.append(Log.getStackTraceString(throwable));
|
||||||
|
|
||||||
|
return builder.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void writeLog(String log) {
|
||||||
|
String time = DATE_FORMAT.format(new Date());
|
||||||
|
File file = new File(mCrashDir, "crash_" + time + ".txt");
|
||||||
|
try {
|
||||||
|
write(file, log.getBytes("UTF-8"));
|
||||||
|
} catch (Throwable e) {
|
||||||
|
e.printStackTrace();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private static String getKernel() {
|
||||||
|
try {
|
||||||
|
return App.toString(new FileInputStream("/proc/version")).trim();
|
||||||
|
} catch (Throwable e) {
|
||||||
|
return e.getMessage();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static final class CrashActivity extends Activity {
|
||||||
|
|
||||||
|
private String mLog;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
|
||||||
|
setTheme(android.R.style.Theme_DeviceDefault);
|
||||||
|
setTitle("App Crash");
|
||||||
|
|
||||||
|
mLog = getIntent().getStringExtra(Intent.EXTRA_TEXT);
|
||||||
|
|
||||||
|
ScrollView contentView = new ScrollView(this);
|
||||||
|
contentView.setFillViewport(true);
|
||||||
|
|
||||||
|
HorizontalScrollView horizontalScrollView = new HorizontalScrollView(this);
|
||||||
|
|
||||||
|
TextView textView = new TextView(this);
|
||||||
|
int padding = dp2px(16);
|
||||||
|
textView.setPadding(padding, padding, padding, padding);
|
||||||
|
textView.setText(mLog);
|
||||||
|
textView.setTextIsSelectable(true);
|
||||||
|
textView.setTypeface(Typeface.DEFAULT);
|
||||||
|
textView.setLinksClickable(true);
|
||||||
|
|
||||||
|
horizontalScrollView.addView(textView);
|
||||||
|
contentView.addView(horizontalScrollView, ViewGroup.LayoutParams.MATCH_PARENT, ViewGroup.LayoutParams.MATCH_PARENT);
|
||||||
|
|
||||||
|
setContentView(contentView);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void restart() {
|
||||||
|
Intent intent = getPackageManager().getLaunchIntentForPackage(getPackageName());
|
||||||
|
if (intent != null) {
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
startActivity(intent);
|
||||||
|
}
|
||||||
|
finish();
|
||||||
|
android.os.Process.killProcess(android.os.Process.myPid());
|
||||||
|
System.exit(0);
|
||||||
|
}
|
||||||
|
|
||||||
|
private static int dp2px(float dpValue) {
|
||||||
|
final float scale = Resources.getSystem().getDisplayMetrics().density;
|
||||||
|
return (int) (dpValue * scale + 0.5f);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onCreateOptionsMenu(Menu menu) {
|
||||||
|
menu.add(0, android.R.id.copy, 0, android.R.string.copy)
|
||||||
|
.setShowAsAction(MenuItem.SHOW_AS_ACTION_IF_ROOM);
|
||||||
|
return super.onCreateOptionsMenu(menu);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||||||
|
switch (item.getItemId()) {
|
||||||
|
case android.R.id.copy:
|
||||||
|
ClipboardManager cm = (ClipboardManager) getSystemService(Context.CLIPBOARD_SERVICE);
|
||||||
|
cm.setPrimaryClip(ClipData.newPlainText(getPackageName(), mLog));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return super.onOptionsItemSelected(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBackPressed() {
|
||||||
|
restart();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,180 @@
|
|||||||
|
package cc.winboll.studio.autonfc;
|
||||||
|
|
||||||
|
import android.app.PendingIntent;
|
||||||
|
import android.content.ComponentName;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.content.ServiceConnection;
|
||||||
|
import android.nfc.NfcAdapter;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.os.IBinder;
|
||||||
|
import android.view.Menu;
|
||||||
|
import android.view.MenuItem;
|
||||||
|
import android.view.View;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.appcompat.widget.Toolbar;
|
||||||
|
import cc.winboll.studio.autonfc.nfc.ActionDialog;
|
||||||
|
import cc.winboll.studio.autonfc.nfc.AutoNFCService;
|
||||||
|
import cc.winboll.studio.autonfc.nfc.NFCInterfaceActivity;
|
||||||
|
import cc.winboll.studio.libappbase.LogActivity;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
|
||||||
|
public class MainActivity extends AppCompatActivity {
|
||||||
|
|
||||||
|
public static final String TAG = "MainActivity";
|
||||||
|
|
||||||
|
private NfcAdapter mNfcAdapter;
|
||||||
|
private PendingIntent mPendingIntent;
|
||||||
|
private AutoNFCService mService;
|
||||||
|
private boolean mBound = false;
|
||||||
|
|
||||||
|
// 服务连接
|
||||||
|
private ServiceConnection mConnection = new ServiceConnection() {
|
||||||
|
@Override
|
||||||
|
public void onServiceConnected(ComponentName name, IBinder service) {
|
||||||
|
AutoNFCService.LocalBinder binder = (AutoNFCService.LocalBinder) service;
|
||||||
|
mService = binder.getService();
|
||||||
|
mBound = true;
|
||||||
|
LogUtils.d(TAG, "onServiceConnected: 服务已绑定");
|
||||||
|
|
||||||
|
// 关键:把 Activity 传给 Service,用于回调
|
||||||
|
mService.attachActivity(MainActivity.this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onServiceDisconnected(ComponentName name) {
|
||||||
|
mBound = false;
|
||||||
|
mService = null;
|
||||||
|
LogUtils.d(TAG, "onServiceDisconnected: 服务已断开");
|
||||||
|
}
|
||||||
|
};
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
setContentView(R.layout.activity_main);
|
||||||
|
|
||||||
|
Toolbar toolbar = findViewById(R.id.toolbar);
|
||||||
|
setSupportActionBar(toolbar);
|
||||||
|
|
||||||
|
// 初始化 NFC
|
||||||
|
mNfcAdapter = NfcAdapter.getDefaultAdapter(this);
|
||||||
|
Intent nfcIntent = new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
||||||
|
mPendingIntent = PendingIntent.getActivity(this, 0, nfcIntent, 0);
|
||||||
|
|
||||||
|
LogUtils.d(TAG, "onCreate() -> NFC 监听已绑定到 MainActivity");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onStart() {
|
||||||
|
super.onStart();
|
||||||
|
// 绑定服务
|
||||||
|
Intent intent = new Intent(this, AutoNFCService.class);
|
||||||
|
bindService(intent, mConnection, Context.BIND_AUTO_CREATE);
|
||||||
|
LogUtils.d(TAG, "onStart: 绑定服务");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onStop() {
|
||||||
|
super.onStop();
|
||||||
|
// 解绑服务
|
||||||
|
if (mBound) {
|
||||||
|
unbindService(mConnection);
|
||||||
|
mBound = false;
|
||||||
|
LogUtils.d(TAG, "onStop: 解绑服务");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
LogUtils.d(TAG, "onResume() -> 开启 NFC 前台分发");
|
||||||
|
if (mNfcAdapter != null) {
|
||||||
|
mNfcAdapter.enableForegroundDispatch(this, mPendingIntent, null, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onPause() {
|
||||||
|
super.onPause();
|
||||||
|
LogUtils.d(TAG, "onPause() -> 关闭 NFC 前台分发");
|
||||||
|
if (mNfcAdapter != null) {
|
||||||
|
mNfcAdapter.disableForegroundDispatch(this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// NFC 卡片靠近唯一入口
|
||||||
|
@Override
|
||||||
|
protected void onNewIntent(Intent intent) {
|
||||||
|
super.onNewIntent(intent);
|
||||||
|
LogUtils.d(TAG, "onNewIntent() -> 检测到 NFC 卡片");
|
||||||
|
|
||||||
|
// 把 NFC 事件交给 Service 处理
|
||||||
|
if (mBound && mService != null) {
|
||||||
|
mService.handleNfcIntent(intent);
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "服务未绑定,无法处理 NFC");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onCreateOptionsMenu(Menu menu) {
|
||||||
|
getMenuInflater().inflate(R.menu.main_menu, menu);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||||||
|
int id = item.getItemId();
|
||||||
|
|
||||||
|
if (id == R.id.menu_log) {
|
||||||
|
LogActivity.startLogActivity(this);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return super.onOptionsItemSelected(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void onNFCInterfaceActivity(View view) {
|
||||||
|
startActivity(new Intent(this, NFCInterfaceActivity.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========================= 【新增】关键方法:由 Service 回调来弹出对话框 =========================
|
||||||
|
/**
|
||||||
|
* Service 解析完 NFC 数据后,回调此方法在 Activity 中弹出对话框
|
||||||
|
*/
|
||||||
|
public void showNfcActionDialog(final String nfcData) {
|
||||||
|
LogUtils.d(TAG, "showNfcActionDialog() -> Activity 存活,安全弹出对话框");
|
||||||
|
|
||||||
|
// Activity 正在运行,直接弹框,绝对不会报 BadTokenException
|
||||||
|
final ActionDialog dialog = new ActionDialog(this);
|
||||||
|
dialog.setNfcData(nfcData);
|
||||||
|
dialog.setButtonClickListener(new ActionDialog.OnButtonClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onBuildClick() {
|
||||||
|
LogUtils.d(TAG, "点击 Build");
|
||||||
|
if (mService != null) {
|
||||||
|
mService.executeTermuxCommand(AutoNFCService.ACTION_BUILD, nfcData);
|
||||||
|
}
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onViewClick() {
|
||||||
|
LogUtils.d(TAG, "点击 View");
|
||||||
|
if (mService != null) {
|
||||||
|
mService.executeTermuxCommand(AutoNFCService.ACTION_BUILD_VIEW, nfcData);
|
||||||
|
}
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCancelClick() {
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
dialog.show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,66 @@
|
|||||||
|
package cc.winboll.studio.autonfc.models;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author 豆包&ZhanGSKen<zhangsken@qq.com>
|
||||||
|
* @Date 2026/03/16 09:38
|
||||||
|
*/
|
||||||
|
public class NfcTermuxCmd {
|
||||||
|
|
||||||
|
private String script; // 要执行的预制脚本名(如 auth.sh)
|
||||||
|
private String[] args; // 脚本参数
|
||||||
|
private String workDir; // 工作目录
|
||||||
|
private boolean background; // 是否后台执行
|
||||||
|
private String resultDir; // 结果输出目录(可为 null)
|
||||||
|
|
||||||
|
public NfcTermuxCmd() {
|
||||||
|
}
|
||||||
|
|
||||||
|
public NfcTermuxCmd(String script, String[] args, String workDir, boolean background, String resultDir) {
|
||||||
|
this.script = script;
|
||||||
|
this.args = args;
|
||||||
|
this.workDir = workDir;
|
||||||
|
this.background = background;
|
||||||
|
this.resultDir = resultDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getScript() {
|
||||||
|
return script;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setScript(String script) {
|
||||||
|
this.script = script;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String[] getArgs() {
|
||||||
|
return args;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setArgs(String[] args) {
|
||||||
|
this.args = args;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getWorkDir() {
|
||||||
|
return workDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setWorkDir(String workDir) {
|
||||||
|
this.workDir = workDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isBackground() {
|
||||||
|
return background;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBackground(boolean background) {
|
||||||
|
this.background = background;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getResultDir() {
|
||||||
|
return resultDir;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setResultDir(String resultDir) {
|
||||||
|
this.resultDir = resultDir;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,123 @@
|
|||||||
|
package cc.winboll.studio.autonfc.nfc;
|
||||||
|
|
||||||
|
import android.app.Dialog;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.Button;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
|
||||||
|
import cc.winboll.studio.autonfc.R;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 自定义对话框类,用于与用户交互,展示 NFC 相关操作选项
|
||||||
|
* 兼容 Java 7 语法
|
||||||
|
*
|
||||||
|
* @author 豆包&ZhanGSKen
|
||||||
|
* @create 2025-08-15
|
||||||
|
* @lastModify 2026-03-17
|
||||||
|
*/
|
||||||
|
public class ActionDialog extends Dialog {
|
||||||
|
|
||||||
|
private static final String TAG = "ActionDialog";
|
||||||
|
private String mNfcData;
|
||||||
|
private OnButtonClickListener mClickListener;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 构造函数
|
||||||
|
*/
|
||||||
|
public ActionDialog(Context context) {
|
||||||
|
super(context);
|
||||||
|
initDialog();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置 NFC 数据
|
||||||
|
*/
|
||||||
|
public void setNfcData(String nfcData) {
|
||||||
|
this.mNfcData = nfcData;
|
||||||
|
LogUtils.d(TAG, "setNfcData() -> " + nfcData);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 设置点击监听
|
||||||
|
*/
|
||||||
|
public void setButtonClickListener(OnButtonClickListener listener) {
|
||||||
|
this.mClickListener = listener;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化布局
|
||||||
|
*/
|
||||||
|
private void initDialog() {
|
||||||
|
setTitle("请选择操作");
|
||||||
|
|
||||||
|
LinearLayout layout = new LinearLayout(getContext());
|
||||||
|
layout.setOrientation(LinearLayout.VERTICAL);
|
||||||
|
layout.setPadding(20, 20, 20, 20);
|
||||||
|
|
||||||
|
addButtons(layout);
|
||||||
|
|
||||||
|
setContentView(layout);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加按钮
|
||||||
|
*/
|
||||||
|
private void addButtons(LinearLayout layout) {
|
||||||
|
// Build 按钮
|
||||||
|
Button btnBuild = createButton("Build", new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
LogUtils.d(TAG, "点击 Build");
|
||||||
|
if (mClickListener != null) {
|
||||||
|
mClickListener.onBuildClick();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
layout.addView(btnBuild);
|
||||||
|
|
||||||
|
// View 按钮
|
||||||
|
Button btnView = createButton("View", new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
LogUtils.d(TAG, "点击 View");
|
||||||
|
if (mClickListener != null) {
|
||||||
|
mClickListener.onViewClick();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
layout.addView(btnView);
|
||||||
|
|
||||||
|
// 取消按钮
|
||||||
|
Button btnCancel = createButton("Cancel", new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
LogUtils.d(TAG, "点击 Cancel");
|
||||||
|
dismiss();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
layout.addView(btnCancel);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 创建按钮
|
||||||
|
*/
|
||||||
|
private Button createButton(String text, View.OnClickListener listener) {
|
||||||
|
Button button = new Button(getContext());
|
||||||
|
button.setText(text);
|
||||||
|
button.setPadding(10, 10, 10, 10);
|
||||||
|
button.setOnClickListener(listener);
|
||||||
|
return button;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 回调接口
|
||||||
|
*/
|
||||||
|
public interface OnButtonClickListener {
|
||||||
|
void onBuildClick();
|
||||||
|
void onViewClick();
|
||||||
|
void onCancelClick();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,202 @@
|
|||||||
|
package cc.winboll.studio.autonfc.nfc;
|
||||||
|
|
||||||
|
import android.app.Service;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.nfc.NdefMessage;
|
||||||
|
import android.nfc.NdefRecord;
|
||||||
|
import android.nfc.NfcAdapter;
|
||||||
|
import android.nfc.Tag;
|
||||||
|
import android.nfc.tech.Ndef;
|
||||||
|
import android.os.Binder;
|
||||||
|
import android.os.IBinder;
|
||||||
|
|
||||||
|
import cc.winboll.studio.autonfc.MainActivity;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
|
||||||
|
import java.nio.charset.Charset;
|
||||||
|
import java.util.Arrays;
|
||||||
|
|
||||||
|
public class AutoNFCService extends Service {
|
||||||
|
|
||||||
|
public static final String TAG = "AutoNFCService";
|
||||||
|
|
||||||
|
// ================= 已修改:更新为 Beta 包名 =================
|
||||||
|
public static final String ACTION_BUILD = "cc.winboll.studio.winboll.termux.NfcTermuxBridgeActivity.ACTION_BUILD";
|
||||||
|
public static final String ACTION_BUILD_VIEW = "cc.winboll.studio.winboll.termux.NfcTermuxBridgeActivity.ACTION_BUILD_VIEW";
|
||||||
|
|
||||||
|
private final IBinder mBinder = new LocalBinder();
|
||||||
|
private String mNfcData;
|
||||||
|
private MainActivity mActivity; // 持有 Activity 引用,用于回调
|
||||||
|
|
||||||
|
// ========================= 生命周期 =========================
|
||||||
|
@Override
|
||||||
|
public void onCreate() {
|
||||||
|
super.onCreate();
|
||||||
|
LogUtils.d(TAG, "onCreate() -> 服务创建");
|
||||||
|
// 移除:startForeground(NOTIFICATION_ID, buildNotification());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "onDestroy() -> 服务已停止");
|
||||||
|
mActivity = null; // 释放引用
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========================= 服务绑定 =========================
|
||||||
|
@Override
|
||||||
|
public IBinder onBind(Intent intent) {
|
||||||
|
LogUtils.d(TAG, "onBind() -> 服务被绑定");
|
||||||
|
return mBinder;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onUnbind(Intent intent) {
|
||||||
|
LogUtils.d(TAG, "onUnbind() -> 服务解绑");
|
||||||
|
// 移除:stopForeground(true);
|
||||||
|
stopSelf();
|
||||||
|
return super.onUnbind(intent);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========================= 对外暴露方法 =========================
|
||||||
|
/**
|
||||||
|
* 绑定 Activity,用于回调显示对话框
|
||||||
|
*/
|
||||||
|
public void attachActivity(MainActivity activity) {
|
||||||
|
this.mActivity = activity;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理 NFC 意图
|
||||||
|
*/
|
||||||
|
public void handleNfcIntent(Intent intent) {
|
||||||
|
LogUtils.d(TAG, "handleNfcIntent() -> 开始处理");
|
||||||
|
|
||||||
|
if (intent == null) {
|
||||||
|
LogUtils.e(TAG, "handleNfcIntent() -> 参数 intent 为空");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
String action = intent.getAction();
|
||||||
|
LogUtils.d(TAG, "handleNfcIntent() -> Action = " + action);
|
||||||
|
|
||||||
|
if (NfcAdapter.ACTION_NDEF_DISCOVERED.equals(action)
|
||||||
|
|| NfcAdapter.ACTION_TECH_DISCOVERED.equals(action)
|
||||||
|
|| NfcAdapter.ACTION_TAG_DISCOVERED.equals(action)) {
|
||||||
|
|
||||||
|
LogUtils.d(TAG, "handleNfcIntent() -> 匹配 NFC 动作");
|
||||||
|
|
||||||
|
Tag tag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
|
||||||
|
if (tag == null) {
|
||||||
|
LogUtils.e(TAG, "handleNfcIntent() -> Tag 为空");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
LogUtils.d(TAG, "handleNfcIntent() -> Tag ID = " + bytesToHexString(tag.getId()));
|
||||||
|
LogUtils.d(TAG, "handleNfcIntent() -> Tech List = " + Arrays.toString(tag.getTechList()));
|
||||||
|
|
||||||
|
parseNdefData(tag);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========================= 内部业务 =========================
|
||||||
|
private void parseNdefData(Tag tag) {
|
||||||
|
LogUtils.d(TAG, "parseNdefData() -> 开始解析");
|
||||||
|
|
||||||
|
if (tag == null) return;
|
||||||
|
|
||||||
|
Ndef ndef = Ndef.get(tag);
|
||||||
|
if (ndef == null) {
|
||||||
|
LogUtils.e(TAG, "parseNdefData() -> 不支持 NDEF 格式");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
ndef.connect();
|
||||||
|
NdefMessage msg = ndef.getNdefMessage();
|
||||||
|
|
||||||
|
if (msg == null || msg.getRecords() == null || msg.getRecords().length == 0) {
|
||||||
|
LogUtils.w(TAG, "parseNdefData() -> 卡片无数据");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
NdefRecord record = msg.getRecords()[0];
|
||||||
|
byte[] payload = record.getPayload();
|
||||||
|
|
||||||
|
int langLen = payload[0] & 0x3F;
|
||||||
|
int start = 1 + langLen;
|
||||||
|
|
||||||
|
if (start < payload.length) {
|
||||||
|
mNfcData = new String(payload, start, payload.length - start, Charset.forName("UTF-8"));
|
||||||
|
LogUtils.d(TAG, "parseNdefData() -> 读卡成功: " + mNfcData);
|
||||||
|
|
||||||
|
// 关键:回调给 Activity 弹框,此时 Activity 一定是存活状态
|
||||||
|
if (mActivity != null) {
|
||||||
|
mActivity.showNfcActionDialog(mNfcData);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.e(TAG, "parseNdefData() -> 读取失败", e);
|
||||||
|
} finally {
|
||||||
|
try {
|
||||||
|
ndef.close();
|
||||||
|
} catch (Exception e) {
|
||||||
|
// 忽略关闭异常
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 执行 Termux 命令
|
||||||
|
*/
|
||||||
|
public void executeTermuxCommand(String action, String nfcData) {
|
||||||
|
LogUtils.d(TAG, "executeTermuxCommand() -> 开始执行");
|
||||||
|
|
||||||
|
if (nfcData == null || nfcData.isEmpty()) {
|
||||||
|
ToastUtils.show("数据错误");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
LogUtils.d(TAG, "executeTermuxCommand() -> 发送指令: " + nfcData);
|
||||||
|
|
||||||
|
Intent bridgeIntent = new Intent(action);
|
||||||
|
|
||||||
|
// ================= 已修改:使用 Beta 包名 =================
|
||||||
|
bridgeIntent.setClassName(
|
||||||
|
"cc.winboll.studio.winboll.beta",
|
||||||
|
"cc.winboll.studio.winboll.termux.NfcTermuxBridgeActivity"
|
||||||
|
);
|
||||||
|
|
||||||
|
bridgeIntent.putExtra(Intent.EXTRA_TEXT, nfcData);
|
||||||
|
bridgeIntent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
|
||||||
|
startActivity(bridgeIntent);
|
||||||
|
ToastUtils.show("指令已发送");
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.e(TAG, "executeTermuxCommand() -> 发送失败", e);
|
||||||
|
ToastUtils.show("发送失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========================= 工具方法 =========================
|
||||||
|
private String bytesToHexString(byte[] bytes) {
|
||||||
|
if (bytes == null || bytes.length == 0) return "";
|
||||||
|
StringBuilder sb = new StringBuilder();
|
||||||
|
for (byte b : bytes) {
|
||||||
|
sb.append(String.format("%02X", b));
|
||||||
|
}
|
||||||
|
return sb.toString();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ========================= Binder =========================
|
||||||
|
public class LocalBinder extends Binder {
|
||||||
|
public AutoNFCService getService() {
|
||||||
|
return AutoNFCService.this;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,230 @@
|
|||||||
|
package cc.winboll.studio.autonfc.nfc;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.app.PendingIntent;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.nfc.NfcAdapter;
|
||||||
|
import android.nfc.Tag;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import cc.winboll.studio.autonfc.R;
|
||||||
|
import cc.winboll.studio.autonfc.models.NfcTermuxCmd;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.Locale;
|
||||||
|
|
||||||
|
public class NFCInterfaceActivity extends Activity {
|
||||||
|
|
||||||
|
public static final String TAG = "NFCInterfaceActivity";
|
||||||
|
|
||||||
|
private EditText et_script;
|
||||||
|
private EditText et_args;
|
||||||
|
private EditText et_workDir;
|
||||||
|
private EditText et_background;
|
||||||
|
private EditText et_resultDir;
|
||||||
|
|
||||||
|
private TextView tvResult;
|
||||||
|
private TextView tvStatus;
|
||||||
|
|
||||||
|
private NfcAdapter mNfcAdapter;
|
||||||
|
private PendingIntent mNfcPendingIntent;
|
||||||
|
private Tag mCurrentTag;
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
setContentView(R.layout.activity_nfc_interface);
|
||||||
|
initView();
|
||||||
|
initNfc();
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initView() {
|
||||||
|
et_script = findViewById(R.id.et_script);
|
||||||
|
et_args = findViewById(R.id.et_args);
|
||||||
|
et_workDir = findViewById(R.id.et_workDir);
|
||||||
|
et_background = findViewById(R.id.et_background);
|
||||||
|
et_resultDir = findViewById(R.id.et_resultDir);
|
||||||
|
|
||||||
|
tvResult = findViewById(R.id.tv_result);
|
||||||
|
tvStatus = findViewById(R.id.tv_status);
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initNfc() {
|
||||||
|
mNfcAdapter = NfcAdapter.getDefaultAdapter(this);
|
||||||
|
|
||||||
|
if (mNfcAdapter == null) {
|
||||||
|
tvStatus.setText("设备不支持NFC");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (!mNfcAdapter.isEnabled()) {
|
||||||
|
tvStatus.setText("请开启NFC");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Intent nfcIntent = new Intent(this, getClass()).addFlags(Intent.FLAG_ACTIVITY_SINGLE_TOP);
|
||||||
|
mNfcPendingIntent = PendingIntent.getActivity(this, 0, nfcIntent, PendingIntent.FLAG_UPDATE_CURRENT);
|
||||||
|
|
||||||
|
tvStatus.setText("NFC已启动,等待卡片靠近");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
if (mNfcAdapter != null && mNfcAdapter.isEnabled()) {
|
||||||
|
mNfcAdapter.enableForegroundDispatch(this, mNfcPendingIntent, null, null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onPause() {
|
||||||
|
super.onPause();
|
||||||
|
if (mNfcAdapter != null) {
|
||||||
|
mNfcAdapter.disableForegroundDispatch(this);
|
||||||
|
}
|
||||||
|
mCurrentTag = null;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onNewIntent(Intent intent) {
|
||||||
|
super.onNewIntent(intent);
|
||||||
|
mCurrentTag = intent.getParcelableExtra(NfcAdapter.EXTRA_TAG);
|
||||||
|
if (mCurrentTag == null) return;
|
||||||
|
|
||||||
|
tvStatus.setText("卡片已连接,解析中...");
|
||||||
|
readNfc();
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 读取 NFC(完全委托给工具类)
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
private void readNfc() {
|
||||||
|
try {
|
||||||
|
NfcTermuxCmd cmd = NfcUtils.readTag(mCurrentTag);
|
||||||
|
if (cmd == null) {
|
||||||
|
tvStatus.setText("读取成功:标签为空");
|
||||||
|
tvResult.setText("");
|
||||||
|
// 清空窗体
|
||||||
|
clearUiFields();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 核心改动:读取成功后,同时更新详情显示 和 窗体输入框
|
||||||
|
updateUiWithCmd(cmd);
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.e(TAG, "readNfc 失败", e);
|
||||||
|
tvStatus.setText("读取失败:" + e.getMessage());
|
||||||
|
// 出错时清空窗体
|
||||||
|
clearUiFields();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 新增:根据读取到的 Cmd 填充 UI(详情 + 窗体)
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
private void updateUiWithCmd(NfcTermuxCmd cmd) {
|
||||||
|
if (cmd == null) return;
|
||||||
|
|
||||||
|
String time = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.CHINA).format(new Date());
|
||||||
|
String show = "【读取时间】 " + time + "\n\n"
|
||||||
|
+ "【解析结果】\n"
|
||||||
|
+ "script: " + cmd.getScript() + "\n"
|
||||||
|
+ "args: " + (cmd.getArgs() != null ? String.join(", ", cmd.getArgs()) : "[]") + "\n"
|
||||||
|
+ "workDir: " + cmd.getWorkDir() + "\n"
|
||||||
|
+ "background: " + cmd.isBackground() + "\n"
|
||||||
|
+ "resultDir: " + cmd.getResultDir();
|
||||||
|
|
||||||
|
tvResult.setText(show);
|
||||||
|
tvStatus.setText("读取成功!");
|
||||||
|
|
||||||
|
// 👇 关键逻辑:自动填入窗体(每次读取后都会覆盖输入框)
|
||||||
|
et_script.setText(cmd.getScript() != null ? cmd.getScript() : "");
|
||||||
|
et_args.setText(cmd.getArgs() != null ? String.join(",", cmd.getArgs()) : "");
|
||||||
|
et_workDir.setText(cmd.getWorkDir() != null ? cmd.getWorkDir() : "");
|
||||||
|
et_background.setText(String.valueOf(cmd.isBackground()));
|
||||||
|
et_resultDir.setText(cmd.getResultDir() != null ? cmd.getResultDir() : "");
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 辅助:清空所有输入框
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
private void clearUiFields() {
|
||||||
|
et_script.setText("");
|
||||||
|
et_args.setText("");
|
||||||
|
et_workDir.setText("");
|
||||||
|
et_background.setText("");
|
||||||
|
et_resultDir.setText("");
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 写入按钮(委托给工具类)
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
public void onWriteClick(View view) {
|
||||||
|
if (mCurrentTag == null) {
|
||||||
|
showToast("请先靠近卡片");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
NfcTermuxCmd cmd = buildCmdFromUI();
|
||||||
|
NfcUtils.writeTag(mCurrentTag, cmd);
|
||||||
|
|
||||||
|
tvStatus.setText("写入成功!");
|
||||||
|
showToast("写入成功");
|
||||||
|
readNfc(); // 写入后重读,此时会自动填入窗体
|
||||||
|
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.e(TAG, "写入失败", e);
|
||||||
|
tvStatus.setText("写入失败:" + e.getMessage());
|
||||||
|
showToast("写入失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 填充调试数据
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
public void onFillTestDataClick(View view) {
|
||||||
|
String testJson = "{\"script\":\"BuildWinBoLLProject.sh\",\"args\":[\"DebugTemp\"],\"workDir\":null,\"background\":true,\"resultDir\":null}";
|
||||||
|
try {
|
||||||
|
NfcTermuxCmd cmd = NfcUtils.jsonToCmd(testJson);
|
||||||
|
et_script.setText(cmd.getScript());
|
||||||
|
et_args.setText(cmd.getArgs() != null ? String.join(",", cmd.getArgs()) : "");
|
||||||
|
et_workDir.setText(cmd.getWorkDir() != null ? cmd.getWorkDir() : "");
|
||||||
|
et_background.setText(String.valueOf(cmd.isBackground()));
|
||||||
|
et_resultDir.setText(cmd.getResultDir() != null ? cmd.getResultDir() : "");
|
||||||
|
|
||||||
|
showToast("调试数据已填入");
|
||||||
|
} catch (Exception e) {
|
||||||
|
showToast("解析失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 从 UI 构建 NfcTermuxCmd
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
private NfcTermuxCmd buildCmdFromUI() {
|
||||||
|
String script = et_script.getText().toString().trim();
|
||||||
|
String argsStr = et_args.getText().toString().trim();
|
||||||
|
String workDir = et_workDir.getText().toString().trim();
|
||||||
|
String bgStr = et_background.getText().toString().trim();
|
||||||
|
String resultDir = et_resultDir.getText().toString().trim();
|
||||||
|
|
||||||
|
NfcTermuxCmd cmd = new NfcTermuxCmd();
|
||||||
|
cmd.setScript(script);
|
||||||
|
cmd.setArgs(argsStr.isEmpty() ? new String[0] : argsStr.split(","));
|
||||||
|
cmd.setWorkDir(workDir.isEmpty() ? null : workDir);
|
||||||
|
cmd.setBackground("true".equalsIgnoreCase(bgStr));
|
||||||
|
cmd.setResultDir(resultDir.isEmpty() ? null : resultDir);
|
||||||
|
|
||||||
|
return cmd;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void showToast(String msg) {
|
||||||
|
Toast.makeText(this, msg, Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,78 @@
|
|||||||
|
package cc.winboll.studio.autonfc.nfc;
|
||||||
|
|
||||||
|
import java.util.HashMap;
|
||||||
|
import java.util.Map;
|
||||||
|
|
||||||
|
public class NfcStateMonitor {
|
||||||
|
private static Map<String, OnNfcStateListener> sListenerMap = new HashMap<>();
|
||||||
|
private static boolean sIsRunning = false;
|
||||||
|
|
||||||
|
public static void startMonitor() {
|
||||||
|
if (sIsRunning) return;
|
||||||
|
sListenerMap = new HashMap<>();
|
||||||
|
sIsRunning = true;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void stopMonitor() {
|
||||||
|
if (!sIsRunning) return;
|
||||||
|
sIsRunning = false;
|
||||||
|
if (sListenerMap != null) {
|
||||||
|
sListenerMap.clear();
|
||||||
|
sListenerMap = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 你原来的方法名:registerListener
|
||||||
|
public static void registerListener(String key, OnNfcStateListener listener) {
|
||||||
|
if (!sIsRunning || listener == null) return;
|
||||||
|
sListenerMap.put(key, listener);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void unregisterListener(String key) {
|
||||||
|
if (!sIsRunning || key == null) return;
|
||||||
|
sListenerMap.remove(key);
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void notifyNfcConnected() {
|
||||||
|
if (!sIsRunning) return;
|
||||||
|
for (OnNfcStateListener l : sListenerMap.values()) {
|
||||||
|
l.onNfcConnected();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void notifyNfcDisconnected() {
|
||||||
|
if (!sIsRunning) return;
|
||||||
|
for (OnNfcStateListener l : sListenerMap.values()) {
|
||||||
|
l.onNfcDisconnected();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void notifyReadSuccess(String data) {
|
||||||
|
if (!sIsRunning) return;
|
||||||
|
for (OnNfcStateListener l : sListenerMap.values()) {
|
||||||
|
l.onNfcReadSuccess(data);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void notifyReadFail(String error) {
|
||||||
|
if (!sIsRunning) return;
|
||||||
|
for (OnNfcStateListener l : sListenerMap.values()) {
|
||||||
|
l.onNfcReadFail(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void notifyWriteSuccess() {
|
||||||
|
if (!sIsRunning) return;
|
||||||
|
for (OnNfcStateListener l : sListenerMap.values()) {
|
||||||
|
l.onNfcWriteSuccess();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void notifyWriteFail(String error) {
|
||||||
|
if (!sIsRunning) return;
|
||||||
|
for (OnNfcStateListener l : sListenerMap.values()) {
|
||||||
|
l.onNfcWriteFail(error);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,136 @@
|
|||||||
|
package cc.winboll.studio.autonfc.nfc;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author 豆包&ZhanGSKen<zhangsken@qq.com>
|
||||||
|
* @Date 2026/03/16 14:26
|
||||||
|
*/
|
||||||
|
import android.nfc.NdefMessage;
|
||||||
|
import android.nfc.NdefRecord;
|
||||||
|
import android.nfc.Tag;
|
||||||
|
import android.nfc.tech.Ndef;
|
||||||
|
import com.google.gson.Gson;
|
||||||
|
import com.google.gson.JsonSyntaxException;
|
||||||
|
import cc.winboll.studio.autonfc.models.NfcTermuxCmd;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import java.nio.charset.Charset;
|
||||||
|
import java.util.Locale;
|
||||||
|
|
||||||
|
public class NfcUtils {
|
||||||
|
|
||||||
|
public static final String TAG = "NfcUtils";
|
||||||
|
private static Gson sGson = new Gson();
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 读取 NFC 标签并解析为 NfcTermuxCmd
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
public static NfcTermuxCmd readTag(Tag tag) throws Exception {
|
||||||
|
if (tag == null) {
|
||||||
|
LogUtils.e(TAG, "readTag: tag is null");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Ndef ndef = Ndef.get(tag);
|
||||||
|
if (ndef == null) {
|
||||||
|
LogUtils.e(TAG, "readTag: 不支持 NDEF");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
try {
|
||||||
|
ndef.connect();
|
||||||
|
NdefMessage msg = ndef.getNdefMessage();
|
||||||
|
if (msg == null) return null;
|
||||||
|
|
||||||
|
NdefRecord[] records = msg.getRecords();
|
||||||
|
if (records == null || records.length == 0) return null;
|
||||||
|
|
||||||
|
byte[] payload = records[0].getPayload();
|
||||||
|
int status = payload[0] & 0xFF;
|
||||||
|
int langLen = status & 0x3F;
|
||||||
|
int start = 1 + langLen;
|
||||||
|
|
||||||
|
if (start >= payload.length) return null;
|
||||||
|
|
||||||
|
String json = new String(payload, start, payload.length - start, Charset.forName("UTF-8"));
|
||||||
|
LogUtils.d(TAG, "readTag: 提取 JSON -> " + json);
|
||||||
|
|
||||||
|
return sGson.fromJson(json, NfcTermuxCmd.class);
|
||||||
|
} finally {
|
||||||
|
if (ndef != null && ndef.isConnected()) {
|
||||||
|
ndef.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 写入 NfcTermuxCmd 到 NFC 标签
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
public static void writeTag(Tag tag, NfcTermuxCmd cmd) throws Exception {
|
||||||
|
if (tag == null) throw new Exception("tag is null");
|
||||||
|
|
||||||
|
String json = sGson.toJson(cmd);
|
||||||
|
writeJson(tag, json);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 写入原始 JSON 字符串到 NFC
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
public static void writeJson(Tag tag, String json) throws Exception {
|
||||||
|
if (tag == null) throw new Exception("tag is null");
|
||||||
|
|
||||||
|
Ndef ndef = Ndef.get(tag);
|
||||||
|
if (ndef == null) throw new Exception("标签不支持 NDEF");
|
||||||
|
|
||||||
|
try {
|
||||||
|
ndef.connect();
|
||||||
|
int maxSize = ndef.getMaxSize();
|
||||||
|
int realSize = json.getBytes(Charset.forName("UTF-8")).length;
|
||||||
|
|
||||||
|
if (realSize > maxSize) {
|
||||||
|
throw new Exception("数据过大 (" + realSize + ") > 容量 (" + maxSize + ")");
|
||||||
|
}
|
||||||
|
|
||||||
|
NdefRecord record = createTextRecord(json, true);
|
||||||
|
NdefMessage msg = new NdefMessage(new NdefRecord[]{record});
|
||||||
|
|
||||||
|
ndef.writeNdefMessage(msg);
|
||||||
|
LogUtils.d(TAG, "writeJson: 写入成功");
|
||||||
|
} finally {
|
||||||
|
if (ndef != null && ndef.isConnected()) {
|
||||||
|
ndef.close();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 创建 NFC 文本记录
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
public static NdefRecord createTextRecord(String text, boolean isUtf8) {
|
||||||
|
byte[] langBytes = "en".getBytes(Charset.forName("US-ASCII"));
|
||||||
|
byte[] textBytes = text.getBytes(Charset.forName(isUtf8 ? "UTF-8" : "UTF-16"));
|
||||||
|
|
||||||
|
int status = isUtf8 ? 0 : 0x80;
|
||||||
|
status |= langBytes.length & 0x3F;
|
||||||
|
|
||||||
|
byte[] data = new byte[1 + langBytes.length + textBytes.length];
|
||||||
|
data[0] = (byte) status;
|
||||||
|
System.arraycopy(langBytes, 0, data, 1, langBytes.length);
|
||||||
|
System.arraycopy(textBytes, 0, data, 1 + langBytes.length, textBytes.length);
|
||||||
|
|
||||||
|
return new NdefRecord(NdefRecord.TNF_WELL_KNOWN, NdefRecord.RTD_TEXT, new byte[0], data);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 辅助:JSON -> NfcTermuxCmd
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
public static NfcTermuxCmd jsonToCmd(String json) throws JsonSyntaxException {
|
||||||
|
return sGson.fromJson(json, NfcTermuxCmd.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
// 辅助:NfcTermuxCmd -> JSON
|
||||||
|
// -------------------------------------------------------------------------
|
||||||
|
public static String cmdToJson(NfcTermuxCmd cmd) {
|
||||||
|
return sGson.toJson(cmd);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
package cc.winboll.studio.autonfc.nfc;
|
||||||
|
|
||||||
|
public interface OnNfcStateListener {
|
||||||
|
void onNfcConnected(); // 无参数!
|
||||||
|
void onNfcDisconnected();
|
||||||
|
void onNfcReadSuccess(String data);
|
||||||
|
void onNfcReadFail(String error);
|
||||||
|
void onNfcWriteSuccess();
|
||||||
|
void onNfcWriteFail(String error);
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,34 @@
|
|||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:aapt="http://schemas.android.com/aapt"
|
||||||
|
android:width="108dp"
|
||||||
|
android:height="108dp"
|
||||||
|
android:viewportHeight="108"
|
||||||
|
android:viewportWidth="108">
|
||||||
|
<path
|
||||||
|
android:fillType="evenOdd"
|
||||||
|
android:pathData="M32,64C32,64 38.39,52.99 44.13,50.95C51.37,48.37 70.14,49.57 70.14,49.57L108.26,87.69L108,109.01L75.97,107.97L32,64Z"
|
||||||
|
android:strokeColor="#00000000"
|
||||||
|
android:strokeWidth="1">
|
||||||
|
<aapt:attr name="android:fillColor">
|
||||||
|
<gradient
|
||||||
|
android:endX="78.5885"
|
||||||
|
android:endY="90.9159"
|
||||||
|
android:startX="48.7653"
|
||||||
|
android:startY="61.0927"
|
||||||
|
android:type="linear">
|
||||||
|
<item
|
||||||
|
android:color="#44000000"
|
||||||
|
android:offset="0.0" />
|
||||||
|
<item
|
||||||
|
android:color="#00000000"
|
||||||
|
android:offset="1.0" />
|
||||||
|
</gradient>
|
||||||
|
</aapt:attr>
|
||||||
|
</path>
|
||||||
|
<path
|
||||||
|
android:fillColor="#FFFFFF"
|
||||||
|
android:fillType="nonZero"
|
||||||
|
android:pathData="M66.94,46.02L66.94,46.02C72.44,50.07 76,56.61 76,64L32,64C32,56.61 35.56,50.11 40.98,46.06L36.18,41.19C35.45,40.45 35.45,39.3 36.18,38.56C36.91,37.81 38.05,37.81 38.78,38.56L44.25,44.05C47.18,42.57 50.48,41.71 54,41.71C57.48,41.71 60.78,42.57 63.68,44.05L69.11,38.56C69.84,37.81 70.98,37.81 71.71,38.56C72.44,39.3 72.44,40.45 71.71,41.19L66.94,46.02ZM62.94,56.92C64.08,56.92 65,56.01 65,54.88C65,53.76 64.08,52.85 62.94,52.85C61.8,52.85 60.88,53.76 60.88,54.88C60.88,56.01 61.8,56.92 62.94,56.92ZM45.06,56.92C46.2,56.92 47.13,56.01 47.13,54.88C47.13,53.76 46.2,52.85 45.06,52.85C43.92,52.85 43,53.76 43,54.88C43,56.01 43.92,56.92 45.06,56.92Z"
|
||||||
|
android:strokeColor="#00000000"
|
||||||
|
android:strokeWidth="1" />
|
||||||
|
</vector>
|
||||||
@@ -0,0 +1,170 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<vector xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:width="108dp"
|
||||||
|
android:height="108dp"
|
||||||
|
android:viewportHeight="108"
|
||||||
|
android:viewportWidth="108">
|
||||||
|
<path
|
||||||
|
android:fillColor="#26A69A"
|
||||||
|
android:pathData="M0,0h108v108h-108z" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M9,0L9,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,0L19,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M29,0L29,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M39,0L39,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M49,0L49,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M59,0L59,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M69,0L69,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M79,0L79,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M89,0L89,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M99,0L99,108"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,9L108,9"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,19L108,19"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,29L108,29"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,39L108,39"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,49L108,49"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,59L108,59"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,69L108,69"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,79L108,79"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,89L108,89"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M0,99L108,99"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,29L89,29"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,39L89,39"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,49L89,49"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,59L89,59"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,69L89,69"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M19,79L89,79"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M29,19L29,89"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M39,19L39,89"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M49,19L49,89"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M59,19L59,89"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M69,19L69,89"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
<path
|
||||||
|
android:fillColor="#00000000"
|
||||||
|
android:pathData="M79,19L79,89"
|
||||||
|
android:strokeColor="#33FFFFFF"
|
||||||
|
android:strokeWidth="0.8" />
|
||||||
|
</vector>
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<LinearLayout
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent"
|
||||||
|
android:orientation="vertical">
|
||||||
|
|
||||||
|
<com.google.android.material.appbar.AppBarLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
|
||||||
|
|
||||||
|
<androidx.appcompat.widget.Toolbar
|
||||||
|
android:id="@+id/toolbar"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="?attr/actionBarSize"
|
||||||
|
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"/>
|
||||||
|
|
||||||
|
</com.google.android.material.appbar.AppBarLayout>
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="0dp"
|
||||||
|
android:layout_weight="1.0"
|
||||||
|
android:gravity="center_vertical|center_horizontal">
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="NFC Interface Activity"
|
||||||
|
android:onClick="onNFCInterfaceActivity"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
@@ -0,0 +1,104 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<ScrollView
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="match_parent">
|
||||||
|
|
||||||
|
<LinearLayout
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:orientation="vertical"
|
||||||
|
android:padding="16dp">
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="脚本名称 script:"/>
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/et_script"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="如 auth.sh"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:text="参数 args (逗号分隔):"/>
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/et_args"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="user1,pass123"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:text="工作目录 workDir:"/>
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/et_workDir"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="/data/data/com.termux/files/home"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:text="后台执行 background (true/false):"/>
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/et_background"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:text="true"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:layout_width="wrap_content"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:text="结果目录 resultDir:"/>
|
||||||
|
|
||||||
|
<EditText
|
||||||
|
android:id="@+id/et_resultDir"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:hint="/data/data/com.termux/files/log"/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:onClick="onFillTestDataClick"
|
||||||
|
android:text="填入调试数据 (BuildWinBoLLProject.sh)"/>
|
||||||
|
|
||||||
|
<Button
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="8dp"
|
||||||
|
android:onClick="onWriteClick"
|
||||||
|
android:text="写入 NFC (NfcTermuxCmd JSON)"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_status"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:text="状态"/>
|
||||||
|
|
||||||
|
<TextView
|
||||||
|
android:id="@+id/tv_result"
|
||||||
|
android:layout_width="match_parent"
|
||||||
|
android:layout_height="wrap_content"
|
||||||
|
android:layout_marginTop="16dp"
|
||||||
|
android:scrollbars="vertical"
|
||||||
|
android:textSize="14sp"/>
|
||||||
|
|
||||||
|
</LinearLayout>
|
||||||
|
|
||||||
|
</ScrollView>
|
||||||
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<menu xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<item
|
||||||
|
android:id="@+id/menu_log"
|
||||||
|
android:title="启动日志"/>
|
||||||
|
</menu>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@drawable/ic_launcher_background" />
|
||||||
|
<foreground android:drawable="@drawable/ic_launcher_foreground" />
|
||||||
|
</adaptive-icon>
|
||||||
@@ -0,0 +1,5 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<adaptive-icon xmlns:android="http://schemas.android.com/apk/res/android">
|
||||||
|
<background android:drawable="@drawable/ic_launcher_background" />
|
||||||
|
<foreground android:drawable="@drawable/ic_launcher_foreground" />
|
||||||
|
</adaptive-icon>
|
||||||
|
After Width: | Height: | Size: 3.0 KiB |
|
After Width: | Height: | Size: 4.9 KiB |
|
After Width: | Height: | Size: 2.0 KiB |
|
After Width: | Height: | Size: 2.8 KiB |
|
After Width: | Height: | Size: 4.5 KiB |
|
After Width: | Height: | Size: 6.9 KiB |
|
After Width: | Height: | Size: 6.3 KiB |
|
After Width: | Height: | Size: 10 KiB |
|
After Width: | Height: | Size: 9.0 KiB |
|
After Width: | Height: | Size: 15 KiB |
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
<color name="colorPrimary">#009688</color>
|
||||||
|
<color name="colorPrimaryDark">#00796B</color>
|
||||||
|
<color name="colorAccent">#FF9800</color>
|
||||||
|
</resources>
|
||||||
@@ -0,0 +1,4 @@
|
|||||||
|
<resources>
|
||||||
|
<string name="app_name">AutoNFC</string>
|
||||||
|
|
||||||
|
</resources>
|
||||||
@@ -0,0 +1,11 @@
|
|||||||
|
<resources>
|
||||||
|
|
||||||
|
<!-- Base application theme. -->
|
||||||
|
<style name="MyAppTheme" parent="Theme.AppCompat.Light.NoActionBar">
|
||||||
|
<!-- Customize your theme here. -->
|
||||||
|
<item name="colorPrimary">@color/colorPrimary</item>
|
||||||
|
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
|
||||||
|
<item name="colorAccent">@color/colorAccent</item>
|
||||||
|
</style>
|
||||||
|
|
||||||
|
</resources>
|
||||||
@@ -0,0 +1,12 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools" >
|
||||||
|
|
||||||
|
<application>
|
||||||
|
|
||||||
|
<!-- Put flavor specific code here -->
|
||||||
|
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
||||||
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<!-- Put flavor specific strings here -->
|
||||||
|
|
||||||
|
</resources>
|
||||||
@@ -0,0 +1,40 @@
|
|||||||
|
# Contacts
|
||||||
|
源码参考自:
|
||||||
|
https://github.com/aJIEw/PhoneCallApp.git
|
||||||
|
|
||||||
|
#### 介绍
|
||||||
|
这是可以根据正则表达式匹配拦截骚扰电话的手机拨号应用。
|
||||||
|
|
||||||
|
#### 软件架构
|
||||||
|
适配安卓应用 [AIDE Pro] 的 Gradle 编译结构。
|
||||||
|
也适配安卓应用 [AndroidIDE] 的 Gradle 编译结构。
|
||||||
|
|
||||||
|
|
||||||
|
#### Gradle 编译说明
|
||||||
|
调试版编译命令 :gradle assembleBetaDebug
|
||||||
|
阶段版编译命令 :gradle assembleStageRelease
|
||||||
|
|
||||||
|
#### 使用说明
|
||||||
|
|
||||||
|
在安卓系统中需要设置两个权限允许。
|
||||||
|
1.自启动权限允许。
|
||||||
|
2.省电策略-无限制权限允许。
|
||||||
|
|
||||||
|
#### 参与贡献
|
||||||
|
|
||||||
|
1. Fork 本仓库
|
||||||
|
2. 新建 Feat_xxx 分支
|
||||||
|
3. 提交代码 : ZhanGSKen(ZhanGSKen<zhangsken@188.com>)
|
||||||
|
4. 新建 Pull Request
|
||||||
|
|
||||||
|
|
||||||
|
#### 特技
|
||||||
|
|
||||||
|
1. 使用 Readme\_XXX.md 来支持不同的语言,例如 Readme\_en.md, Readme\_zh.md
|
||||||
|
2. Gitee 官方博客 [blog.gitee.com](https://blog.gitee.com)
|
||||||
|
3. 你可以 [https://gitee.com/explore](https://gitee.com/explore) 这个地址来了解 Gitee 上的优秀开源项目
|
||||||
|
4. [GVP](https://gitee.com/gvp) 全称是 Gitee 最有价值开源项目,是综合评定出的优秀开源项目
|
||||||
|
5. Gitee 官方提供的使用手册 [https://gitee.com/help](https://gitee.com/help)
|
||||||
|
6. Gitee 封面人物是一档用来展示 Gitee 会员风采的栏目 [https://gitee.com/gitee-stars/](https://gitee.com/gitee-stars/)
|
||||||
|
|
||||||
|
#### 参考文档
|
||||||
@@ -0,0 +1 @@
|
|||||||
|
|
||||||
@@ -0,0 +1,100 @@
|
|||||||
|
apply plugin: 'com.android.application'
|
||||||
|
apply from: '../.winboll/winboll_app_build.gradle'
|
||||||
|
apply from: '../.winboll/winboll_lint_build.gradle'
|
||||||
|
|
||||||
|
def genVersionName(def versionName){
|
||||||
|
// 检查编译标志位配置
|
||||||
|
assert (winbollBuildProps['stageCount'] != null)
|
||||||
|
assert (winbollBuildProps['baseVersion'] != null)
|
||||||
|
// 保存基础版本号
|
||||||
|
winbollBuildProps.setProperty("baseVersion", "${versionName}");
|
||||||
|
//保存编译标志配置
|
||||||
|
FileOutputStream fos = new FileOutputStream(winbollBuildPropsFile)
|
||||||
|
winbollBuildProps.store(fos, "${winbollBuildPropsDesc}");
|
||||||
|
fos.close();
|
||||||
|
|
||||||
|
// 返回编译版本号
|
||||||
|
return "${versionName}." + winbollBuildProps['stageCount']
|
||||||
|
}
|
||||||
|
|
||||||
|
android {
|
||||||
|
// 适配MIUI12
|
||||||
|
compileSdkVersion 30
|
||||||
|
buildToolsVersion "30.0.3"
|
||||||
|
|
||||||
|
defaultConfig {
|
||||||
|
applicationId "cc.winboll.studio.contacts"
|
||||||
|
minSdkVersion 23
|
||||||
|
// 适配MIUI12
|
||||||
|
targetSdkVersion 30
|
||||||
|
versionCode 2
|
||||||
|
// versionName 更新后需要手动设置
|
||||||
|
// 项目模块目录的 build.gradle 文件的 stageCount=0
|
||||||
|
// Gradle编译环境下合起来的 versionName 就是 "${versionName}.0"
|
||||||
|
versionName "15.14"
|
||||||
|
if(true) {
|
||||||
|
versionName = genVersionName("${versionName}")
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 米盟 SDK
|
||||||
|
packagingOptions {
|
||||||
|
doNotStrip "*/*/libmimo_1011.so"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
dependencies {
|
||||||
|
|
||||||
|
// 米盟
|
||||||
|
api 'com.miui.zeus:mimo-ad-sdk:5.3.+'//请使用最新版sdk
|
||||||
|
//注意:以下5个库必须要引入
|
||||||
|
//api 'androidx.appcompat:appcompat:1.4.1'
|
||||||
|
api 'androidx.recyclerview:recyclerview:1.0.0'
|
||||||
|
api 'com.google.code.gson:gson:2.8.5'
|
||||||
|
api 'com.github.bumptech.glide:glide:4.9.0'
|
||||||
|
//annotationProcessor 'com.github.bumptech.glide:compiler:4.9.0'
|
||||||
|
|
||||||
|
// 权限请求框架:https://github.com/getActivity/XXPermissions
|
||||||
|
//api 'com.github.getActivity:XXPermissions:18.63'
|
||||||
|
// 下拉控件
|
||||||
|
api 'com.baoyz.pullrefreshlayout:library:1.2.0'
|
||||||
|
// 拼音搜索
|
||||||
|
// https://mvnrepository.com/artifact/com.github.open-android/pinyin4j
|
||||||
|
api 'com.github.open-android:pinyin4j:2.5.0'
|
||||||
|
// SSH
|
||||||
|
api 'com.jcraft:jsch:0.1.55'
|
||||||
|
// Html 解析
|
||||||
|
api 'org.jsoup:jsoup:1.13.1'
|
||||||
|
// 二维码类库
|
||||||
|
api 'com.google.zxing:core:3.4.1'
|
||||||
|
api 'com.journeyapps:zxing-android-embedded:3.6.0'
|
||||||
|
// 应用介绍页类库
|
||||||
|
api 'io.github.medyo:android-about-page:2.0.0'
|
||||||
|
// 网络连接类库
|
||||||
|
api 'com.squareup.okhttp3:okhttp:4.4.1'
|
||||||
|
|
||||||
|
// AndroidX 类库
|
||||||
|
/*implementation 'androidx.appcompat:appcompat:1.1.0'
|
||||||
|
implementation 'androidx.viewpager:viewpager:1.0.0'
|
||||||
|
implementation 'androidx.vectordrawable:vectordrawable:1.1.0'
|
||||||
|
implementation 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
|
||||||
|
implementation 'androidx.fragment:fragment:1.1.0'
|
||||||
|
implementation 'com.google.android.material:material:1.4.0'
|
||||||
|
*/
|
||||||
|
api 'androidx.appcompat:appcompat:1.1.0'
|
||||||
|
api 'com.google.android.material:material:1.4.0'
|
||||||
|
//api 'androidx.viewpager:viewpager:1.0.0'
|
||||||
|
//api 'androidx.vectordrawable:vectordrawable:1.1.0'
|
||||||
|
//api 'androidx.vectordrawable:vectordrawable-animated:1.1.0'
|
||||||
|
//api 'androidx.fragment:fragment:1.1.0'
|
||||||
|
|
||||||
|
// WinBoLL库 nexus.winboll.cc 地址
|
||||||
|
api 'cc.winboll.studio:libaes:15.12.13'
|
||||||
|
api 'cc.winboll.studio:libappbase:15.14.2'
|
||||||
|
|
||||||
|
// WinBoLL备用库 jitpack.io 地址
|
||||||
|
//api 'com.github.ZhanGSKen:AES:aes-v15.12.9'
|
||||||
|
//api 'com.github.ZhanGSKen:APPBase:appbase-v15.14.1'
|
||||||
|
|
||||||
|
api fileTree(dir: 'libs', include: ['*.jar'])
|
||||||
|
}
|
||||||
@@ -0,0 +1,8 @@
|
|||||||
|
#Created by .winboll/winboll_app_build.gradle
|
||||||
|
#Sat Apr 18 21:14:59 HKT 2026
|
||||||
|
stageCount=13
|
||||||
|
libraryProject=
|
||||||
|
baseVersion=15.14
|
||||||
|
publishVersion=15.14.12
|
||||||
|
buildCount=0
|
||||||
|
baseBetaVersion=15.14.13
|
||||||
@@ -0,0 +1,143 @@
|
|||||||
|
# Add project specific ProGuard rules here.
|
||||||
|
# By default, the flags in this file are appended to flags specified
|
||||||
|
# in C:\tools\adt-bundle-windows-x86_64-20131030\sdk/tools/proguard/proguard-android.txt
|
||||||
|
# You can edit the include path and order by changing the proguardFiles
|
||||||
|
# directive in build.gradle.
|
||||||
|
#
|
||||||
|
# For more details, see
|
||||||
|
# http://developer.android.com/guide/developing/tools/proguard.html
|
||||||
|
|
||||||
|
# Add any project specific keep options here:
|
||||||
|
|
||||||
|
# ============================== 基础通用规则 ==============================
|
||||||
|
# 保留系统组件
|
||||||
|
-keep public class * extends android.app.Activity
|
||||||
|
-keep public class * extends android.app.Service
|
||||||
|
-keep public class * extends android.content.BroadcastReceiver
|
||||||
|
-keep public class * extends android.content.ContentProvider
|
||||||
|
-keep public class * extends android.app.backup.BackupAgentHelper
|
||||||
|
-keep public class * extends android.preference.Preference
|
||||||
|
|
||||||
|
# 保留 WinBoLL 核心包及子类(合并简化规则)
|
||||||
|
-keep class cc.winboll.studio.** { *; }
|
||||||
|
-keepclassmembers class cc.winboll.studio.** { *; }
|
||||||
|
|
||||||
|
# 保留所有类中的 public static final String TAG 字段(便于日志定位)
|
||||||
|
-keepclassmembers class * {
|
||||||
|
public static final java.lang.String TAG;
|
||||||
|
}
|
||||||
|
|
||||||
|
# 保留序列化类(避免Parcelable/Gson解析异常)
|
||||||
|
-keep class * implements android.os.Parcelable {
|
||||||
|
public static final android.os.Parcelable$Creator *;
|
||||||
|
}
|
||||||
|
-keepclassmembers class * implements java.io.Serializable {
|
||||||
|
static final long serialVersionUID;
|
||||||
|
private static final java.io.ObjectStreamField[] serialPersistentFields;
|
||||||
|
private void writeObject(java.io.ObjectOutputStream);
|
||||||
|
private void readObject(java.io.ObjectInputStream);
|
||||||
|
java.lang.Object writeReplace();
|
||||||
|
java.lang.Object readResolve();
|
||||||
|
}
|
||||||
|
|
||||||
|
# 保留 R 文件(避免资源ID混淆)
|
||||||
|
-keepclassmembers class **.R$* {
|
||||||
|
public static <fields>;
|
||||||
|
}
|
||||||
|
|
||||||
|
# 保留 native 方法(避免JNI调用失败)
|
||||||
|
-keepclasseswithmembernames class * {
|
||||||
|
native <methods>;
|
||||||
|
}
|
||||||
|
|
||||||
|
# 保留注解和泛型(避免反射/序列化异常)
|
||||||
|
-keepattributes *Annotation*
|
||||||
|
-keepattributes Signature
|
||||||
|
|
||||||
|
# 屏蔽 Java 8+ 警告(适配 Java 7 语法)
|
||||||
|
-dontwarn java.lang.invoke.*
|
||||||
|
-dontwarn android.support.v8.renderscript.*
|
||||||
|
-dontwarn java.util.function.**
|
||||||
|
|
||||||
|
# ============================== 第三方框架专项规则 ==============================
|
||||||
|
# OkHttp 4.4.1(米盟广告请求依赖,完善Lambda兼容)
|
||||||
|
-keep class okhttp3.** { *; }
|
||||||
|
-keep interface okhttp3.** { *; }
|
||||||
|
-keep class okhttp3.internal.** { *; }
|
||||||
|
-keep class okio.** { *; }
|
||||||
|
-dontwarn okhttp3.internal.platform.**
|
||||||
|
-dontwarn okio.**
|
||||||
|
# ============================== 必要补充规则 ==============================
|
||||||
|
# OkHttp 4.4.1 补充规则(Java 7 兼容)
|
||||||
|
-keep class okhttp3.internal.concurrent.** { *; }
|
||||||
|
-keep class okhttp3.internal.connection.** { *; }
|
||||||
|
-dontwarn okhttp3.internal.concurrent.TaskRunner
|
||||||
|
-dontwarn okhttp3.internal.connection.RealCall
|
||||||
|
|
||||||
|
# Glide 4.9.0(米盟广告图片加载依赖)
|
||||||
|
-keep public class * implements com.bumptech.glide.module.GlideModule
|
||||||
|
-keep public class * extends com.bumptech.glide.module.AppGlideModule
|
||||||
|
-keep public enum com.bumptech.glide.load.ImageHeaderParser$ImageType {
|
||||||
|
**[] $VALUES;
|
||||||
|
public *;
|
||||||
|
}
|
||||||
|
-keepclassmembers class * implements com.bumptech.glide.module.AppGlideModule {
|
||||||
|
<init>();
|
||||||
|
}
|
||||||
|
-dontwarn com.bumptech.glide.**
|
||||||
|
|
||||||
|
# Gson 2.8.5(米盟广告数据序列化依赖)
|
||||||
|
-keep class com.google.gson.** { *; }
|
||||||
|
-keep interface com.google.gson.** { *; }
|
||||||
|
-keepclassmembers class * {
|
||||||
|
@com.google.gson.annotations.SerializedName <fields>;
|
||||||
|
}
|
||||||
|
|
||||||
|
# 米盟 SDK(核心广告组件,完整保留避免加载失败)
|
||||||
|
-keep class com.miui.zeus.** { *; }
|
||||||
|
-keep interface com.miui.zeus.** { *; }
|
||||||
|
# 保留米盟日志字段(便于广告加载失败排查)
|
||||||
|
-keepclassmembers class com.miui.zeus.mimo.sdk.** {
|
||||||
|
public static final java.lang.String TAG;
|
||||||
|
}
|
||||||
|
|
||||||
|
# RecyclerView 1.0.0(米盟广告布局渲染依赖)
|
||||||
|
-keep class androidx.recyclerview.** { *; }
|
||||||
|
-keep interface androidx.recyclerview.** { *; }
|
||||||
|
-keepclassmembers class androidx.recyclerview.widget.RecyclerView$Adapter {
|
||||||
|
public *;
|
||||||
|
}
|
||||||
|
|
||||||
|
# 其他第三方框架(按引入依赖保留,无则可删除)
|
||||||
|
# XXPermissions 18.63
|
||||||
|
-keep class com.hjq.permissions.** { *; }
|
||||||
|
-keep interface com.hjq.permissions.** { *; }
|
||||||
|
|
||||||
|
# ZXing 二维码(核心解析组件)
|
||||||
|
-keep class com.google.zxing.** { *; }
|
||||||
|
-keep class com.journeyapps.zxing.** { *; }
|
||||||
|
|
||||||
|
# Jsoup HTML解析
|
||||||
|
-keep class org.jsoup.** { *; }
|
||||||
|
|
||||||
|
# Pinyin4j 拼音搜索
|
||||||
|
-keep class net.sourceforge.pinyin4j.** { *; }
|
||||||
|
|
||||||
|
# JSch SSH组件
|
||||||
|
-keep class com.jcraft.jsch.** { *; }
|
||||||
|
|
||||||
|
# AndroidX 基础组件
|
||||||
|
-keep class androidx.appcompat.** { *; }
|
||||||
|
-keep interface androidx.appcompat.** { *; }
|
||||||
|
|
||||||
|
# ============================== 优化与调试配置 ==============================
|
||||||
|
# 优化级别(平衡混淆效果与性能)
|
||||||
|
-optimizationpasses 5
|
||||||
|
-optimizations !code/simplification/arithmetic,!code/simplification/cast,!field/*,!class/merging/*
|
||||||
|
|
||||||
|
# 调试辅助(保留行号便于崩溃定位)
|
||||||
|
-verbose
|
||||||
|
-dontpreverify
|
||||||
|
-dontusemixedcaseclassnames
|
||||||
|
-keepattributes SourceFile,LineNumberTable
|
||||||
|
|
||||||
@@ -0,0 +1,13 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:tools="http://schemas.android.com/tools" >
|
||||||
|
|
||||||
|
<application
|
||||||
|
tools:replace="android:icon"
|
||||||
|
android:icon="@drawable/ic_winbollbeta">
|
||||||
|
|
||||||
|
<!-- Put flavor specific code here -->
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
||||||
|
|
||||||
@@ -0,0 +1,6 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<resources>
|
||||||
|
|
||||||
|
<string name="app_name">Contacts+</string>
|
||||||
|
|
||||||
|
</resources>
|
||||||
@@ -0,0 +1,258 @@
|
|||||||
|
<?xml version='1.0' encoding='utf-8'?>
|
||||||
|
<manifest
|
||||||
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
package="cc.winboll.studio.contacts">
|
||||||
|
|
||||||
|
<!-- BIND_AUTOFILL_SERVICE -->
|
||||||
|
<uses-permission android:name="android.permission.BIND_AUTOFILL_SERVICE"/>
|
||||||
|
|
||||||
|
<!-- 拨打电话 -->
|
||||||
|
<uses-permission android:name="android.permission.CALL_PHONE"/>
|
||||||
|
|
||||||
|
<!-- 读取手机状态和身份 -->
|
||||||
|
<uses-permission android:name="android.permission.READ_PHONE_STATE"/>
|
||||||
|
|
||||||
|
<!-- 读取电话号码 -->
|
||||||
|
<uses-permission android:name="android.permission.READ_PHONE_NUMBERS"/>
|
||||||
|
|
||||||
|
<!-- 修改系统设置 -->
|
||||||
|
<uses-permission android:name="android.permission.WRITE_SETTINGS"/>
|
||||||
|
|
||||||
|
<!-- 读取联系人 -->
|
||||||
|
<uses-permission android:name="android.permission.READ_CONTACTS"/>
|
||||||
|
|
||||||
|
<!-- 修改您的通讯录 -->
|
||||||
|
<uses-permission android:name="android.permission.WRITE_CONTACTS"/>
|
||||||
|
|
||||||
|
<!-- GET_CONTACTS -->
|
||||||
|
<uses-permission android:name="android.permission.GET_CONTACTS"/>
|
||||||
|
|
||||||
|
<!-- 此应用可显示在其他应用上方 -->
|
||||||
|
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
|
||||||
|
|
||||||
|
<!-- 更改您的音频设置 -->
|
||||||
|
<uses-permission android:name="android.permission.MODIFY_AUDIO_SETTINGS"/>
|
||||||
|
|
||||||
|
<!-- 读取通话记录 -->
|
||||||
|
<uses-permission android:name="android.permission.READ_CALL_LOG"/>
|
||||||
|
|
||||||
|
<!-- 新建/修改/删除通话记录 -->
|
||||||
|
<uses-permission android:name="android.permission.WRITE_CALL_LOG"/>
|
||||||
|
|
||||||
|
<!-- GET_CALL_LOG -->
|
||||||
|
<uses-permission android:name="android.permission.GET_CALL_LOG"/>
|
||||||
|
|
||||||
|
<!-- 录音 -->
|
||||||
|
<uses-permission android:name="android.permission.RECORD_AUDIO"/>
|
||||||
|
|
||||||
|
<!-- 运行前台服务 -->
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE"/>
|
||||||
|
|
||||||
|
<!-- 运行“dataSync”类型的前台服务 -->
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_DATA_SYNC"/>
|
||||||
|
|
||||||
|
<!-- 运行“phoneCall”类型的前台服务 -->
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_PHONE_CALL"/>
|
||||||
|
|
||||||
|
<!-- 运行“microphone”类型的前台服务 -->
|
||||||
|
<uses-permission android:name="android.permission.FOREGROUND_SERVICE_MICROPHONE"/>
|
||||||
|
|
||||||
|
<!-- BIND_CALL_SCREENING_SERVICE -->
|
||||||
|
<uses-permission android:name="android.permission.BIND_CALL_SCREENING_SERVICE"/>
|
||||||
|
|
||||||
|
<!-- 读取您共享存储空间中的内容 -->
|
||||||
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
||||||
|
|
||||||
|
<!-- 修改或删除您共享存储空间中的内容 -->
|
||||||
|
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE"/>
|
||||||
|
|
||||||
|
<!-- MANAGE_EXTERNAL_STORAGE -->
|
||||||
|
<uses-permission android:name="android.permission.MANAGE_EXTERNAL_STORAGE"/>
|
||||||
|
|
||||||
|
<application
|
||||||
|
android:name=".App"
|
||||||
|
android:allowBackup="true"
|
||||||
|
android:icon="@drawable/ic_winboll"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:theme="@style/MyAppTheme"
|
||||||
|
android:requestLegacyExternalStorage="true"
|
||||||
|
android:supportsRtl="true"
|
||||||
|
android:networkSecurityConfig="@xml/network_security_config">
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".MainActivity"
|
||||||
|
android:label="@string/app_name"
|
||||||
|
android:exported="true">
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
|
||||||
|
<action android:name="android.intent.action.MAIN"/>
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.LAUNCHER"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".activities.CallActivity"
|
||||||
|
android:label="CallActivity"
|
||||||
|
android:launchMode="singleTask"
|
||||||
|
android:exported="true">
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<activity
|
||||||
|
android:name=".phonecallui.PhoneCallActivity"
|
||||||
|
android:launchMode="singleTask"
|
||||||
|
android:exported="true">
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
|
||||||
|
<action android:name="android.intent.action.DIAL"/>
|
||||||
|
|
||||||
|
<action android:name="android.intent.action.VIEW"/>
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT"/>
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.BROWSABLE"/>
|
||||||
|
|
||||||
|
<data android:scheme="tel"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
|
||||||
|
<action android:name="android.intent.action.DIAL"/>
|
||||||
|
|
||||||
|
<category android:name="android.intent.category.DEFAULT"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
</activity>
|
||||||
|
|
||||||
|
<activity android:name="cc.winboll.studio.contacts.activities.SettingsActivity"/>
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name=".services.MainService"
|
||||||
|
android:foregroundServiceType="dataSync"
|
||||||
|
android:exported="false"
|
||||||
|
android:stopWithTask="false"/>
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name=".services.AssistantService"
|
||||||
|
android:exported="false"
|
||||||
|
android:stopWithTask="false"/>
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name=".phonecallui.PhoneCallService"
|
||||||
|
android:permission="android.permission.BIND_INCALL_SERVICE"
|
||||||
|
android:exported="false"
|
||||||
|
android:stopWithTask="false">
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="android.telecom.IN_CALL_SERVICE_UI"
|
||||||
|
android:value="true"/>
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
|
||||||
|
<action android:name="android.telecom.InCallService"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
</service>
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name=".listenphonecall.CallListenerService"
|
||||||
|
android:enabled="true"
|
||||||
|
android:exported="false"
|
||||||
|
android:stopWithTask="false">
|
||||||
|
|
||||||
|
<intent-filter android:priority="1000">
|
||||||
|
|
||||||
|
<action android:name=".service.CallShowService"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
</service>
|
||||||
|
|
||||||
|
<service
|
||||||
|
android:name=".services.MyCallScreeningService"
|
||||||
|
android:permission="android.permission.BIND_CALL_SCREENING_SERVICE"
|
||||||
|
android:exported="true"
|
||||||
|
android:stopWithTask="false">
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
|
||||||
|
<action android:name="android.telecom.CallScreeningService"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
</service>
|
||||||
|
|
||||||
|
<receiver
|
||||||
|
android:name=".receivers.MainReceiver"
|
||||||
|
android:stopWithTask="false">
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
|
||||||
|
<action android:name="cc.winboll.studio.contacts.receivers.MainReceiver"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
</receiver>
|
||||||
|
|
||||||
|
<receiver
|
||||||
|
android:name=".widgets.APPStatusWidget"
|
||||||
|
android:exported="true"
|
||||||
|
android:stopWithTask="false">
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
|
||||||
|
<action android:name="android.appwidget.action.APPWIDGET_UPDATE"/>
|
||||||
|
|
||||||
|
<action android:name="cc.winboll.studio.contacts.widgets.APPStatusWidget.ACTION_STATUS_ACTIVE"/>
|
||||||
|
|
||||||
|
<action android:name="cc.winboll.studio.contacts.widgets.APPStatusWidget.ACTION_STATUS_NOACTIVE"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="android.appwidget.provider"
|
||||||
|
android:resource="@xml/appwidget_provider_info"/>
|
||||||
|
|
||||||
|
</receiver>
|
||||||
|
|
||||||
|
<receiver
|
||||||
|
android:name=".widgets.APPStatusWidgetClickListener"
|
||||||
|
android:stopWithTask="false">
|
||||||
|
|
||||||
|
<intent-filter>
|
||||||
|
|
||||||
|
<action android:name="cc.winboll.studio.contacts.widgets.APPStatusWidgetClickListener.ACTION_APPICON_CLICK"/>
|
||||||
|
|
||||||
|
</intent-filter>
|
||||||
|
|
||||||
|
</receiver>
|
||||||
|
|
||||||
|
<provider
|
||||||
|
android:name="androidx.core.content.FileProvider"
|
||||||
|
android:authorities="${applicationId}.fileprovider"
|
||||||
|
android:exported="false"
|
||||||
|
android:grantUriPermissions="true">
|
||||||
|
|
||||||
|
<meta-data
|
||||||
|
android:name="android.support.FILE_PROVIDER_PATHS"
|
||||||
|
android:resource="@xml/file_provider"/>
|
||||||
|
|
||||||
|
</provider>
|
||||||
|
|
||||||
|
<activity android:name="cc.winboll.studio.contacts.activities.UnitTestActivity"/>
|
||||||
|
|
||||||
|
<activity android:name="cc.winboll.studio.contacts.activities.AboutActivity"/>
|
||||||
|
|
||||||
|
<service android:name="cc.winboll.studio.contacts.services.LimitedTimeSpecialChannelService"/>
|
||||||
|
|
||||||
|
</application>
|
||||||
|
|
||||||
|
</manifest>
|
||||||
@@ -0,0 +1,313 @@
|
|||||||
|
package cc.winboll.studio.contacts;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.Looper;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/02/13 06:58:04
|
||||||
|
* @Describe Activity 栈管理工具,统一管理应用内 Activity 生命周期
|
||||||
|
* 适配:Java7 + Android API29-30 + 小米机型,优化并发安全与通话场景稳定性
|
||||||
|
*/
|
||||||
|
public class ActivityStack {
|
||||||
|
// 常量定义(核心标识+版本兼容常量)
|
||||||
|
public static final String TAG = "ActivityStack";
|
||||||
|
private static final int API_VERSION_O = 26; // Android 8.0 API26(isDestroyed适配用)
|
||||||
|
|
||||||
|
// 单例与核心成员变量(按优先级排序)
|
||||||
|
private static final ActivityStack INSTANCE = new ActivityStack();
|
||||||
|
// 替换为ArrayList+同步锁:解决CopyOnWriteArrayList迭代器不能删除的崩溃,兼顾并发安全
|
||||||
|
private final List<Activity> mActivityList = new ArrayList<Activity>();
|
||||||
|
private final Handler mMainHandler = new Handler(Looper.getMainLooper()); // 复用主线程Handler,避免内存泄漏
|
||||||
|
|
||||||
|
// 单例对外暴露方法
|
||||||
|
public static ActivityStack getInstance() {
|
||||||
|
return INSTANCE;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 私有构造,禁止外部实例化
|
||||||
|
private ActivityStack() {
|
||||||
|
LogUtils.d(TAG, "ActivityStack 初始化完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 栈基础操作(添加/移除) ======================
|
||||||
|
/**
|
||||||
|
* 添加Activity到栈中,避免重复入栈
|
||||||
|
* @param activity 待添加的Activity
|
||||||
|
*/
|
||||||
|
public void addActivity(Activity activity) {
|
||||||
|
if (activity == null) {
|
||||||
|
LogUtils.w(TAG, "addActivity: activity is null, skip");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 同步锁:解决多线程并发添加冲突(小米机型多线程场景适配)
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (!mActivityList.contains(activity)) {
|
||||||
|
mActivityList.add(activity);
|
||||||
|
LogUtils.d(TAG, "addActivity: " + activity.getClass().getSimpleName() + ", stack size: " + mActivityList.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 移除Activity(不销毁,用于正常退出场景)
|
||||||
|
* @param activity 待移除的Activity
|
||||||
|
*/
|
||||||
|
public void removeActivity(Activity activity) {
|
||||||
|
if (activity == null) {
|
||||||
|
LogUtils.w(TAG, "removeActivity: activity is null, skip");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (mActivityList.remove(activity)) {
|
||||||
|
LogUtils.d(TAG, "removeActivity: " + activity.getClass().getSimpleName() + ", stack size: " + mActivityList.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== Activity状态查询(获取/判断存活) ======================
|
||||||
|
/**
|
||||||
|
* 获取栈顶有效Activity(迭代遍历替代递归,避免栈溢出,适配小米多页面场景)
|
||||||
|
* @return 栈顶有效Activity,无则返回null
|
||||||
|
*/
|
||||||
|
public Activity getTopActivity() {
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (mActivityList.isEmpty()) {
|
||||||
|
LogUtils.w(TAG, "getTopActivity: stack is empty, return null");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
Activity validTopActivity = null;
|
||||||
|
// 倒序遍历,优先取最顶层有效Activity,同时清理无效残留
|
||||||
|
for (int i = mActivityList.size() - 1; i >= 0; i--) {
|
||||||
|
Activity activity = mActivityList.get(i);
|
||||||
|
// 版本兼容校验:API26+才支持isDestroyed
|
||||||
|
if (activity != null && !activity.isFinishing() && (getSdkVersion() < API_VERSION_O || !activity.isDestroyed())) {
|
||||||
|
validTopActivity = activity;
|
||||||
|
break;
|
||||||
|
} else {
|
||||||
|
mActivityList.remove(i);
|
||||||
|
String className = (activity != null) ? activity.getClass().getSimpleName() : "null";
|
||||||
|
LogUtils.w(TAG, "getTopActivity: remove invalid activity: " + className);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
if (validTopActivity != null) {
|
||||||
|
LogUtils.d(TAG, "getTopActivity: top activity: " + validTopActivity.getClass().getSimpleName());
|
||||||
|
}
|
||||||
|
return validTopActivity;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取指定类的有效Activity实例(通话场景核心方法,判断页面是否存活)
|
||||||
|
* @param activityClass 目标Activity类
|
||||||
|
* @return 有效实例,无则返回null
|
||||||
|
*/
|
||||||
|
public Activity getActivity(Class<?> activityClass) {
|
||||||
|
if (activityClass == null) {
|
||||||
|
LogUtils.w(TAG, "getActivity: activityClass is null, return null");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (mActivityList.isEmpty()) {
|
||||||
|
LogUtils.w(TAG, "getActivity: stack empty, return null");
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (Activity activity : mActivityList) {
|
||||||
|
if (activity != null && activity.getClass().equals(activityClass) && !activity.isFinishing() && (getSdkVersion() < API_VERSION_O || !activity.isDestroyed())) {
|
||||||
|
LogUtils.d(TAG, "getActivity: find valid activity: " + activityClass.getSimpleName());
|
||||||
|
return activity;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LogUtils.w(TAG, "getActivity: no valid activity: " + activityClass.getSimpleName());
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 判断指定Activity是否存活(简化通话场景调用,避免重复判空)
|
||||||
|
* @param activityClass 目标Activity类
|
||||||
|
* @return true:存活,false:未存活
|
||||||
|
*/
|
||||||
|
public boolean isActivityAlive(Class<?> activityClass) {
|
||||||
|
boolean isAlive = getActivity(activityClass) != null;
|
||||||
|
LogUtils.d(TAG, "isActivityAlive: " + activityClass.getSimpleName() + ", result: " + isAlive);
|
||||||
|
return isAlive;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== Activity销毁操作(单/批量/全部) ======================
|
||||||
|
/**
|
||||||
|
* 销毁栈顶Activity(主线程执行,适配小米机型线程限制)
|
||||||
|
*/
|
||||||
|
public void finishTopActivity() {
|
||||||
|
runOnMainThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (mActivityList.isEmpty()) {
|
||||||
|
LogUtils.w(TAG, "finishTopActivity: stack is empty, skip");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 先移除再校验,避免并发冲突(小米多线程场景适配)
|
||||||
|
Activity topActivity = mActivityList.remove(mActivityList.size() - 1);
|
||||||
|
if (topActivity == null) {
|
||||||
|
LogUtils.w(TAG, "finishTopActivity: top activity is null, skip");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (!topActivity.isFinishing() && (getSdkVersion() < API_VERSION_O || !topActivity.isDestroyed())) {
|
||||||
|
topActivity.finish();
|
||||||
|
LogUtils.d(TAG, "finishTopActivity: destroy top activity: " + topActivity.getClass().getSimpleName() + ", stack size: " + mActivityList.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 销毁指定Activity(主线程执行,避免跨线程异常)
|
||||||
|
* @param activity 待销毁的Activity
|
||||||
|
*/
|
||||||
|
public void finishActivity(final Activity activity) {
|
||||||
|
runOnMainThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
if (activity == null) {
|
||||||
|
LogUtils.w(TAG, "finishActivity: activity is null, skip");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (mActivityList.contains(activity) && !activity.isFinishing() && (getSdkVersion() < API_VERSION_O || !activity.isDestroyed())) {
|
||||||
|
mActivityList.remove(activity);
|
||||||
|
activity.finish();
|
||||||
|
LogUtils.d(TAG, "finishActivity: destroy activity: " + activity.getClass().getSimpleName() + ", stack size: " + mActivityList.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 销毁指定类的所有Activity(核心修复:迭代器删除崩溃,通话场景核心)
|
||||||
|
* @param activityClass 目标Activity类
|
||||||
|
*/
|
||||||
|
public void finishActivity(final Class<?> activityClass) {
|
||||||
|
runOnMainThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
if (activityClass == null) {
|
||||||
|
LogUtils.w(TAG, "finishActivity: activityClass is null, skip");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (mActivityList.isEmpty()) {
|
||||||
|
LogUtils.w(TAG, "finishActivity: stack empty, skip");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 核心修复:用索引遍历+倒序删除,替代迭代器删除(避免UnsupportedOperationException)
|
||||||
|
for (int i = mActivityList.size() - 1; i >= 0; i--) {
|
||||||
|
Activity activity = mActivityList.get(i);
|
||||||
|
if (activity != null && activity.getClass().equals(activityClass)) {
|
||||||
|
if (!activity.isFinishing() && (getSdkVersion() < API_VERSION_O || !activity.isDestroyed())) {
|
||||||
|
mActivityList.remove(i); // 索引删除,支持ArrayList
|
||||||
|
activity.finish();
|
||||||
|
LogUtils.d(TAG, "finishActivity: destroy class activity: " + activityClass.getSimpleName() + ", stack size: " + mActivityList.size());
|
||||||
|
} else {
|
||||||
|
mActivityList.remove(i); // 清理无效残留
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 销毁栈中所有Activity(退出应用/清空栈场景用)
|
||||||
|
*/
|
||||||
|
public void finishAllActivity() {
|
||||||
|
runOnMainThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (mActivityList.isEmpty()) {
|
||||||
|
LogUtils.w(TAG, "finishAllActivity: stack is empty, skip");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 遍历销毁所有有效Activity,逐个状态校验(小米机型稳定性适配)
|
||||||
|
for (Activity activity : mActivityList) {
|
||||||
|
if (activity != null && !activity.isFinishing() && (getSdkVersion() < API_VERSION_O || !activity.isDestroyed())) {
|
||||||
|
activity.finish();
|
||||||
|
LogUtils.d(TAG, "finishAllActivity: destroy activity: " + activity.getClass().getSimpleName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
mActivityList.clear();
|
||||||
|
LogUtils.d(TAG, "finishAllActivity: all activity destroyed, stack cleared");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 栈优化与工具方法 ======================
|
||||||
|
/**
|
||||||
|
* 清理栈中所有无效Activity(null/已销毁/已结束),优化小米机型内存占用
|
||||||
|
*/
|
||||||
|
public void clearInvalidActivities() {
|
||||||
|
runOnMainThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
synchronized (mActivityList) {
|
||||||
|
if (mActivityList.isEmpty()) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 倒序索引删除,避免遍历过程中索引错乱
|
||||||
|
for (int i = mActivityList.size() - 1; i >= 0; i--) {
|
||||||
|
Activity activity = mActivityList.get(i);
|
||||||
|
if (activity == null || activity.isFinishing() || (getSdkVersion() >= API_VERSION_O && activity.isDestroyed())) {
|
||||||
|
mActivityList.remove(i);
|
||||||
|
String className = (activity != null) ? activity.getClass().getSimpleName() : "null";
|
||||||
|
LogUtils.d(TAG, "clearInvalidActivities: remove invalid activity: " + className);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "clearInvalidActivities: done, stack size: " + mActivityList.size());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 确保任务在主线程执行(Activity操作必须主线程,小米机型严格限制)
|
||||||
|
* @param runnable 待执行任务
|
||||||
|
*/
|
||||||
|
private void runOnMainThread(Runnable runnable) {
|
||||||
|
if (runnable == null) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
// 避免不必要的线程切换,优化性能(小米机型流畅度适配)
|
||||||
|
if (Looper.getMainLooper() == Looper.myLooper()) {
|
||||||
|
runnable.run();
|
||||||
|
} else {
|
||||||
|
mMainHandler.post(runnable);
|
||||||
|
LogUtils.d(TAG, "runOnMainThread: post task to main thread");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 辅助方法:获取当前系统SDK版本(简化版本判断逻辑,统一调用)
|
||||||
|
* @return SDK版本号
|
||||||
|
*/
|
||||||
|
private int getSdkVersion() {
|
||||||
|
return android.os.Build.VERSION.SDK_INT;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,33 @@
|
|||||||
|
package cc.winboll.studio.contacts;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen<zhangsken@qq.com>
|
||||||
|
* @Date 2024/12/08 15:10:51
|
||||||
|
* @Describe 全局应用类
|
||||||
|
*/
|
||||||
|
import cc.winboll.studio.libaes.utils.WinBoLLActivityManager;
|
||||||
|
import cc.winboll.studio.libappbase.GlobalApplication;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
|
||||||
|
public class App extends GlobalApplication {
|
||||||
|
|
||||||
|
public static final String TAG = "App";
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onCreate() {
|
||||||
|
super.onCreate();
|
||||||
|
// 设置应用调试标志
|
||||||
|
setIsDebugging(BuildConfig.DEBUG);
|
||||||
|
|
||||||
|
// 初始化窗口管理类
|
||||||
|
WinBoLLActivityManager.init(this);
|
||||||
|
// 初始化 Toast 框架
|
||||||
|
ToastUtils.init(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onTerminate() {
|
||||||
|
super.onTerminate();
|
||||||
|
ToastUtils.release();
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,529 @@
|
|||||||
|
package cc.winboll.studio.contacts;
|
||||||
|
|
||||||
|
import android.Manifest;
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.app.ActivityManager;
|
||||||
|
import android.app.AlertDialog;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.DialogInterface;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.graphics.Color;
|
||||||
|
import android.net.Uri;
|
||||||
|
import android.os.Build;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.Looper;
|
||||||
|
import android.telecom.TelecomManager;
|
||||||
|
import android.view.Menu;
|
||||||
|
import android.view.MenuItem;
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.CheckBox;
|
||||||
|
import android.widget.ImageView;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import androidx.appcompat.widget.Toolbar;
|
||||||
|
import androidx.fragment.app.Fragment;
|
||||||
|
import androidx.fragment.app.FragmentManager;
|
||||||
|
import androidx.fragment.app.FragmentPagerAdapter;
|
||||||
|
import androidx.viewpager.widget.ViewPager;
|
||||||
|
import cc.winboll.studio.contacts.activities.SettingsActivity;
|
||||||
|
import cc.winboll.studio.contacts.activities.WinBollActivity;
|
||||||
|
import cc.winboll.studio.contacts.dun.Rules;
|
||||||
|
import cc.winboll.studio.contacts.fragments.CallLogFragment;
|
||||||
|
import cc.winboll.studio.contacts.fragments.ContactsFragment;
|
||||||
|
import cc.winboll.studio.contacts.fragments.LogFragment;
|
||||||
|
import cc.winboll.studio.contacts.model.MainServiceBean;
|
||||||
|
import cc.winboll.studio.contacts.services.MainService;
|
||||||
|
import cc.winboll.studio.contacts.utils.PermissionUtils;
|
||||||
|
import cc.winboll.studio.contacts.views.DunTemperatureView;
|
||||||
|
import cc.winboll.studio.libaes.interfaces.IWinBoLLActivity;
|
||||||
|
import cc.winboll.studio.libaes.views.ADsBannerView;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.LogView;
|
||||||
|
import com.google.android.material.tabs.TabLayout;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/08/30 14:32
|
||||||
|
* @Describe Contacts 主窗口(完全适配 API 30 + Java 7 语法)
|
||||||
|
* 核心优化:1. 移除电话状态监听 2. 移除通话筛选服务 3. 移除 MainService 所有相关逻辑 4. ViewPager 实现 Fragment 懒加载(仅首屏初始化)
|
||||||
|
* 问题修复:解决首屏 Fragment 空白问题(删除 setPrimaryItem 冲突逻辑+延迟首屏初始化)
|
||||||
|
*/
|
||||||
|
public final class MainActivity extends WinBollActivity implements IWinBoLLActivity, ViewPager.OnPageChangeListener, View.OnClickListener {
|
||||||
|
|
||||||
|
// ====================== 1. 常量定义区(硬编码API版本,避免高版本依赖) ======================
|
||||||
|
public static final String TAG = "MainActivity";
|
||||||
|
public static final int REQUEST_HOME_ACTIVITY = 0;
|
||||||
|
public static final int REQUEST_ABOUT_ACTIVITY = 1;
|
||||||
|
public static final int REQUEST_APP_SETTINGS = 2;
|
||||||
|
public static final String ACTION_SOS = "cc.winboll.studio.libappbase.WinBoLL.ACTION_SOS";
|
||||||
|
private static final int DIALER_REQUEST_CODE = 1;
|
||||||
|
private static final int REQUEST_REQUIRED_PERMISSIONS = 1002;
|
||||||
|
private static final int REQUEST_OVERLAY_PERMISSION = 1003;
|
||||||
|
|
||||||
|
// API版本硬编码常量(Java 7兼容,杜绝Build.VERSION_CODES高版本引用)
|
||||||
|
private static final int ANDROID_6_API = 23;
|
||||||
|
private static final int ANDROID_8_API = 26;
|
||||||
|
private static final int ANDROID_10_API = 29;
|
||||||
|
private static final int ANDROID_14_API = 34;
|
||||||
|
|
||||||
|
// ====================== 2. 静态成员区 ======================
|
||||||
|
static MainActivity _MainActivity;
|
||||||
|
|
||||||
|
// ====================== 3. 权限常量区 ======================
|
||||||
|
private final String[] REQUIRED_PERMISSIONS = PermissionUtils.BASE_PERMISSIONS;
|
||||||
|
|
||||||
|
// ====================== 4. UI控件成员区 ======================
|
||||||
|
private ADsBannerView mADsBannerView;
|
||||||
|
private LogView mLogView;
|
||||||
|
private Toolbar mToolbar;
|
||||||
|
private CheckBox cbMainService;
|
||||||
|
private TabLayout tabLayout;
|
||||||
|
private ViewPager viewPager;
|
||||||
|
private List<View> views;
|
||||||
|
private ImageView[] imageViews;
|
||||||
|
private LinearLayout linearLayout;
|
||||||
|
|
||||||
|
// ====================== 5. 业务逻辑成员区 ======================
|
||||||
|
private int currentPoint = 0;
|
||||||
|
private List<Fragment> fragmentList;
|
||||||
|
private List<String> tabTitleList;
|
||||||
|
// 记录已初始化的Fragment位置(避免重复初始化)
|
||||||
|
private boolean[] isFragmentInit;
|
||||||
|
|
||||||
|
// ====================== 6. 接口实现区 ======================
|
||||||
|
@Override
|
||||||
|
public Activity getActivity() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTag() {
|
||||||
|
return TAG;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 7. 生命周期函数区 ======================
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "===== onCreate: 主Activity开始创建 =====");
|
||||||
|
_MainActivity = this;
|
||||||
|
|
||||||
|
// 直接初始化UI(原权限检查逻辑注释保留,按需启用)
|
||||||
|
initUIAndLogic(savedInstanceState);
|
||||||
|
|
||||||
|
MainServiceBean mainServiceBean = MainServiceBean.loadBean(this, MainServiceBean.class);
|
||||||
|
if (mainServiceBean != null && mainServiceBean.isEnable()) {
|
||||||
|
Intent intent = new Intent(this, MainService.class);
|
||||||
|
// 根据应用前后台状态选择启动方式(Android 12+ 后台用 startForegroundService)
|
||||||
|
if (Build.VERSION.SDK_INT >= 31) {
|
||||||
|
startForegroundService(intent);
|
||||||
|
} else {
|
||||||
|
startService(intent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "===== onCreate: 主Activity创建流程结束 =====");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onPostCreate(Bundle savedInstanceState) {
|
||||||
|
super.onPostCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onPostCreate: 主Activity创建完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
if (mADsBannerView != null) {
|
||||||
|
mADsBannerView.resumeADs(MainActivity.this);
|
||||||
|
LogUtils.d(TAG, "onResume: 广告栏资源已恢复");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onPause() {
|
||||||
|
super.onPause();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "===== onDestroy: 主Activity开始销毁 =====");
|
||||||
|
// 释放广告资源
|
||||||
|
if (mADsBannerView != null) {
|
||||||
|
mADsBannerView.releaseAdResources();
|
||||||
|
LogUtils.d(TAG, "onDestroy: 广告栏资源已释放");
|
||||||
|
}
|
||||||
|
// 清空Fragment相关引用,避免内存泄漏
|
||||||
|
if (fragmentList != null) {
|
||||||
|
fragmentList.clear();
|
||||||
|
fragmentList = null;
|
||||||
|
}
|
||||||
|
if (tabTitleList != null) {
|
||||||
|
tabTitleList.clear();
|
||||||
|
tabTitleList = null;
|
||||||
|
}
|
||||||
|
isFragmentInit = null;
|
||||||
|
LogUtils.d(TAG, "===== onDestroy: 主Activity销毁完成 =====");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 8. 权限相关回调函数区 ======================
|
||||||
|
@Override
|
||||||
|
public void onRequestPermissionsResult(int requestCode, String[] permissions, int[] grantResults) {
|
||||||
|
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
|
||||||
|
LogUtils.d(TAG, "onRequestPermissionsResult: 权限请求回调,requestCode=" + requestCode);
|
||||||
|
|
||||||
|
if (requestCode == REQUEST_REQUIRED_PERMISSIONS) {
|
||||||
|
String deniedPerms = PermissionUtils.getDeniedPermissions(this, permissions);
|
||||||
|
if (deniedPerms.length() == 0) {
|
||||||
|
LogUtils.d(TAG, "onRequestPermissionsResult: 所有危险权限授予成功");
|
||||||
|
checkAndRequestRemainingPermissions();
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "onRequestPermissionsResult: 被拒权限:" + deniedPerms);
|
||||||
|
showPermissionDeniedDialogAndExit("应用需要「" + deniedPerms + "」权限才能正常运行,请授予权限后重新打开应用。");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||||
|
super.onActivityResult(requestCode, resultCode, data);
|
||||||
|
LogUtils.d(TAG, "onActivityResult: 页面回调触发,requestCode=" + requestCode + ",resultCode=" + resultCode);
|
||||||
|
|
||||||
|
switch (requestCode) {
|
||||||
|
case DIALER_REQUEST_CODE:
|
||||||
|
if (resultCode == Activity.RESULT_OK) {
|
||||||
|
LogUtils.d(TAG, "onActivityResult: 设为默认拨号应用成功");
|
||||||
|
Toast.makeText(MainActivity.this, getString(R.string.app_name) + " 已成为默认电话应用", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case REQUEST_APP_SETTINGS:
|
||||||
|
LogUtils.d(TAG, "onActivityResult: 从设置页返回,重建Activity");
|
||||||
|
recreate();
|
||||||
|
break;
|
||||||
|
case REQUEST_OVERLAY_PERMISSION:
|
||||||
|
handleOverlayPermissionResult();
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
LogUtils.w(TAG, "onActivityResult: 未知requestCode=" + requestCode);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 处理悬浮窗权限申请结果
|
||||||
|
*/
|
||||||
|
private void handleOverlayPermissionResult() {
|
||||||
|
if (PermissionUtils.isOverlayPermissionGranted(this)) {
|
||||||
|
LogUtils.d(TAG, "handleOverlayPermissionResult: 悬浮窗权限申请成功");
|
||||||
|
LogUtils.d(TAG, "handleOverlayPermissionResult: 所有权限已授予");
|
||||||
|
initUIAndLogic(null);
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "handleOverlayPermissionResult: 悬浮窗权限申请失败");
|
||||||
|
showPermissionDeniedDialogAndExit("应用需要悬浮窗权限才能展示来电弹窗,请授予后重新打开应用。");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检查并申请剩余权限(仅保留悬浮窗)
|
||||||
|
*/
|
||||||
|
private void checkAndRequestRemainingPermissions() {
|
||||||
|
if (!PermissionUtils.isOverlayPermissionGranted(this)) {
|
||||||
|
LogUtils.d(TAG, "checkAndRequestRemainingPermissions: 悬浮窗权限未授予,跳转设置页");
|
||||||
|
PermissionUtils.requestOverlayPermission(this, REQUEST_OVERLAY_PERMISSION);
|
||||||
|
} else {
|
||||||
|
LogUtils.d(TAG, "checkAndRequestRemainingPermissions: 所有权限已授予");
|
||||||
|
initUIAndLogic(null);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 权限拒绝提示对话框(Java 7 匿名内部类实现,禁止Lambda)
|
||||||
|
*/
|
||||||
|
private void showPermissionDeniedDialogAndExit(String tip) {
|
||||||
|
LogUtils.d(TAG, "showPermissionDeniedDialogAndExit: 弹出权限不足提示框");
|
||||||
|
AlertDialog.Builder builder = new AlertDialog.Builder(this);
|
||||||
|
builder.setTitle("权限不足,无法使用");
|
||||||
|
builder.setMessage(tip);
|
||||||
|
builder.setCancelable(false);
|
||||||
|
|
||||||
|
builder.setNegativeButton("去设置", new DialogInterface.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
|
dialog.dismiss();
|
||||||
|
LogUtils.d(TAG, "showPermissionDeniedDialogAndExit: 用户选择去设置权限");
|
||||||
|
PermissionUtils.goAppDetailsSettings(MainActivity.this);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
builder.setPositiveButton("确定退出", new DialogInterface.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
|
dialog.dismiss();
|
||||||
|
LogUtils.d(TAG, "showPermissionDeniedDialogAndExit: 用户选择退出应用");
|
||||||
|
finishAndRemoveTask();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
builder.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 9. UI与业务逻辑初始化区 ======================
|
||||||
|
private void initUIAndLogic(Bundle savedInstanceState) {
|
||||||
|
if (mToolbar != null) {
|
||||||
|
LogUtils.d(TAG, "initUIAndLogic: UI已初始化,无需重复执行");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
LogUtils.d(TAG, "===== initUIAndLogic: 开始初始化UI与业务逻辑 =====");
|
||||||
|
setContentView(R.layout.activity_main);
|
||||||
|
|
||||||
|
// 1. 工具栏初始化
|
||||||
|
mToolbar = (Toolbar) findViewById(R.id.activitymainToolbar1);
|
||||||
|
setSupportActionBar(mToolbar);
|
||||||
|
getSupportActionBar().setSubtitle(TAG);
|
||||||
|
LogUtils.d(TAG, "initUIAndLogic: 工具栏初始化完成");
|
||||||
|
|
||||||
|
// 2. TabLayout与ViewPager初始化
|
||||||
|
tabLayout = (TabLayout) findViewById(R.id.tabLayout);
|
||||||
|
viewPager = (ViewPager) findViewById(R.id.viewPager);
|
||||||
|
initViewPagerAndTabs();
|
||||||
|
tabLayout.setupWithViewPager(viewPager);
|
||||||
|
LogUtils.d(TAG, "initUIAndLogic: ViewPager与TabLayout初始化完成");
|
||||||
|
|
||||||
|
// 3. 广告栏初始化
|
||||||
|
mADsBannerView = (ADsBannerView) findViewById(R.id.adsbanner);
|
||||||
|
LogUtils.d(TAG, "initUIAndLogic: 广告栏控件初始化完成");
|
||||||
|
|
||||||
|
// 左边盾值视图初始化(Java7分步写法,禁止链式调用)
|
||||||
|
DunTemperatureView tempViewLeft = (DunTemperatureView) findViewById(R.id.dun_temp_view_left);
|
||||||
|
tempViewLeft.setMaxValue(Rules.getInstance(this).getSettingsModel().getDunTotalCount());
|
||||||
|
tempViewLeft.setCurrentValue(Rules.getInstance(this).getSettingsModel().getDunCurrentCount());
|
||||||
|
|
||||||
|
int[] customColors = new int[2];
|
||||||
|
customColors[0] = Color.parseColor("#FF3366FF");
|
||||||
|
customColors[1] = Color.parseColor("#FF9900CC");
|
||||||
|
float[] positions = new float[2];
|
||||||
|
positions[0] = 0.0f;
|
||||||
|
positions[1] = 1.0f;
|
||||||
|
tempViewLeft.setGradientColors(customColors, positions);
|
||||||
|
// 文本放在温度条右侧(默认,可省略)
|
||||||
|
tempViewLeft.setTextPosition(true);
|
||||||
|
// 右边盾值视图初始化(Java7分步写法,禁止链式调用)
|
||||||
|
DunTemperatureView tempViewRight = (DunTemperatureView) findViewById(R.id.dun_temp_view_right);
|
||||||
|
tempViewRight.setMaxValue(Rules.getInstance(this).getSettingsModel().getDunTotalCount());
|
||||||
|
tempViewRight.setCurrentValue(Rules.getInstance(this).getSettingsModel().getDunCurrentCount());
|
||||||
|
|
||||||
|
tempViewRight.setGradientColors(customColors, positions);
|
||||||
|
// 文本放在温度条左侧
|
||||||
|
tempViewRight.setTextPosition(false);
|
||||||
|
LogUtils.d(TAG, "initUIAndLogic: 盾值视图初始化完成");
|
||||||
|
LogUtils.d(TAG, "===== initUIAndLogic: 初始化流程全部结束 =====");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化ViewPager与Tab数据(Java7规范,泛型完整声明),添加懒加载标记
|
||||||
|
* 关键修改:延迟50ms初始化首屏,确保Fragment控件就绪;删除setPrimaryItem冲突逻辑
|
||||||
|
*/
|
||||||
|
private void initViewPagerAndTabs() {
|
||||||
|
LogUtils.d(TAG, "initViewPagerAndTabs: 开始初始化ViewPager数据");
|
||||||
|
fragmentList = new ArrayList<Fragment>();
|
||||||
|
tabTitleList = new ArrayList<String>();
|
||||||
|
|
||||||
|
// 添加Fragment实例(仅创建对象,不初始化业务逻辑)
|
||||||
|
fragmentList.add(CallLogFragment.newInstance(0));
|
||||||
|
fragmentList.add(ContactsFragment.newInstance(1));
|
||||||
|
fragmentList.add(LogFragment.newInstance(2));
|
||||||
|
tabTitleList.add("通话记录");
|
||||||
|
tabTitleList.add("联系人");
|
||||||
|
tabTitleList.add("应用日志");
|
||||||
|
|
||||||
|
// 初始化懒加载标记数组(默认均未初始化)
|
||||||
|
int fragmentCount = fragmentList.size();
|
||||||
|
isFragmentInit = new boolean[fragmentCount];
|
||||||
|
for (int i = 0; i < fragmentCount; i++) {
|
||||||
|
isFragmentInit[i] = false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 设置自定义适配器(已删除setPrimaryItem,避免初始化冲突)
|
||||||
|
LazyLoadPagerAdapter adapter = new LazyLoadPagerAdapter(getSupportFragmentManager(), fragmentList, tabTitleList);
|
||||||
|
viewPager.setAdapter(adapter);
|
||||||
|
// 关闭预加载(设为0仅加载当前页,关键)
|
||||||
|
viewPager.setOffscreenPageLimit(0);
|
||||||
|
viewPager.addOnPageChangeListener(this);
|
||||||
|
|
||||||
|
// 关键优化:延迟50ms初始化首屏(确保Fragment已完成onCreateView,控件绑定就绪)
|
||||||
|
new Handler(Looper.getMainLooper()).postDelayed(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
initFragmentByPosition(0);
|
||||||
|
LogUtils.d(TAG, "initViewPagerAndTabs: 延迟初始化首屏Fragment,位置=0");
|
||||||
|
}
|
||||||
|
}, 50);
|
||||||
|
|
||||||
|
LogUtils.d(TAG, "initViewPagerAndTabs: ViewPager初始化完成,等待延迟初始化首屏");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 根据位置初始化Fragment(调用Fragment的初始化逻辑,避免重复执行)
|
||||||
|
* 优化:添加isAdded判断,确保Fragment已附加到Activity,防止上下文空指针
|
||||||
|
*/
|
||||||
|
private void initFragmentByPosition(int position) {
|
||||||
|
// 校验位置合法性 + 避免重复初始化 + 确保Fragment已附加到Activity
|
||||||
|
if (position < 0 || position >= fragmentList.size() || isFragmentInit[position]) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
Fragment targetFragment = fragmentList.get(position);
|
||||||
|
if (targetFragment != null && targetFragment.isAdded()) {
|
||||||
|
// 触发Fragment初始化(调用各Fragment的initData方法)
|
||||||
|
if (targetFragment instanceof CallLogFragment) {
|
||||||
|
((CallLogFragment) targetFragment).initData();
|
||||||
|
} else if (targetFragment instanceof ContactsFragment) {
|
||||||
|
((ContactsFragment) targetFragment).initData();
|
||||||
|
} else if (targetFragment instanceof LogFragment) {
|
||||||
|
((LogFragment) targetFragment).initData();
|
||||||
|
}
|
||||||
|
// 标记为已初始化
|
||||||
|
isFragmentInit[position] = true;
|
||||||
|
LogUtils.d(TAG, "initFragmentByPosition: 初始化Fragment,位置=" + position + ",标题=" + tabTitleList.get(position));
|
||||||
|
} else {
|
||||||
|
LogUtils.w(TAG, "initFragmentByPosition: Fragment未附加到Activity/实例为空,位置=" + position);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 10. 菜单相关函数区 ======================
|
||||||
|
@Override
|
||||||
|
public boolean onCreateOptionsMenu(Menu menu) {
|
||||||
|
getMenuInflater().inflate(R.menu.toolbar_main, menu);
|
||||||
|
LogUtils.d(TAG, "onCreateOptionsMenu: 菜单加载完成");
|
||||||
|
return super.onCreateOptionsMenu(menu);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||||||
|
if (item.getItemId() == R.id.item_settings) {
|
||||||
|
LogUtils.d(TAG, "onOptionsItemSelected: 用户点击设置菜单");
|
||||||
|
startActivity(new Intent(this, SettingsActivity.class));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return super.onOptionsItemSelected(item);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 11. ViewPager页面回调区(切换时初始化对应Fragment) ======================
|
||||||
|
@Override
|
||||||
|
public void onPageScrolled(int position, float positionOffset, int positionOffsetPixels) {}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPageSelected(int position) {
|
||||||
|
currentPoint = position;
|
||||||
|
LogUtils.d(TAG, "onPageSelected: 页面切换至[" + position + "],标题=" + tabTitleList.get(position));
|
||||||
|
// 切换页面时,初始化当前页Fragment(未初始化过才执行)
|
||||||
|
initFragmentByPosition(position);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onPageScrollStateChanged(int state) {}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {}
|
||||||
|
|
||||||
|
// ====================== 12. 工具函数区 ======================
|
||||||
|
/**
|
||||||
|
* 拨号工具方法(添加空指针防护)
|
||||||
|
*/
|
||||||
|
public static void dialPhoneNumber(String phoneNumber) {
|
||||||
|
if (_MainActivity == null) {
|
||||||
|
LogUtils.e(TAG, "dialPhoneNumber: MainActivity实例为空,无法拨号");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (phoneNumber == null || phoneNumber.trim().isEmpty()) {
|
||||||
|
LogUtils.e(TAG, "dialPhoneNumber: 拨号号码为空");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
if (PermissionUtils.checkPermission(_MainActivity, Manifest.permission.CALL_PHONE)) {
|
||||||
|
Intent intent = new Intent(Intent.ACTION_DIAL);
|
||||||
|
intent.setData(Uri.parse("tel:" + phoneNumber));
|
||||||
|
LogUtils.d(TAG, "dialPhoneNumber: 发起拨号,号码=" + phoneNumber);
|
||||||
|
_MainActivity.startActivity(intent);
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "dialPhoneNumber: 拨号权限不足,无法发起拨号");
|
||||||
|
Toast.makeText(_MainActivity, "拨号权限不足", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 判断是否为默认拨号应用(适配API30,硬编码版本判断)
|
||||||
|
*/
|
||||||
|
public boolean isDefaultPhoneCallApp() {
|
||||||
|
if (Build.VERSION.SDK_INT >= ANDROID_6_API) {
|
||||||
|
TelecomManager manager = (TelecomManager) getSystemService(Context.TELECOM_SERVICE);
|
||||||
|
if (manager != null && manager.getDefaultDialerPackage() != null) {
|
||||||
|
boolean isDefault = manager.getDefaultDialerPackage().equals(getPackageName());
|
||||||
|
LogUtils.d(TAG, "isDefaultPhoneCallApp: 是否为默认拨号应用=" + isDefault);
|
||||||
|
return isDefault;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "isDefaultPhoneCallApp: 系统版本低于Android 6,无法判断");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检查服务是否正在运行(通用工具方法,添加空指针防护)
|
||||||
|
*/
|
||||||
|
public boolean isServiceRunning(Class<?> serviceClass) {
|
||||||
|
if (serviceClass == null) {
|
||||||
|
LogUtils.e(TAG, "isServiceRunning: 服务类参数为null");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
ActivityManager manager = (ActivityManager) getSystemService(Context.ACTIVITY_SERVICE);
|
||||||
|
if (manager == null) {
|
||||||
|
LogUtils.w(TAG, "isServiceRunning: ActivityManager获取失败");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
for (ActivityManager.RunningServiceInfo service : manager.getRunningServices(Integer.MAX_VALUE)) {
|
||||||
|
if (serviceClass.getName().equals(service.service.getClassName())) {
|
||||||
|
LogUtils.d(TAG, "isServiceRunning: 服务[" + serviceClass.getSimpleName() + "]正在运行");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "isServiceRunning: 服务[" + serviceClass.getSimpleName() + "]未运行");
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 13. 内部类定义区(Java 7 规范,禁止Lambda) ======================
|
||||||
|
/**
|
||||||
|
* 自定义懒加载ViewPager适配器(删除setPrimaryItem方法,解决首屏初始化冲突)
|
||||||
|
*/
|
||||||
|
private class LazyLoadPagerAdapter extends FragmentPagerAdapter {
|
||||||
|
private final List<Fragment> fragmentList;
|
||||||
|
private final List<String> tabTitleList;
|
||||||
|
|
||||||
|
public LazyLoadPagerAdapter(FragmentManager fm, List<Fragment> fragmentList, List<String> tabTitleList) {
|
||||||
|
super(fm);
|
||||||
|
this.fragmentList = fragmentList;
|
||||||
|
this.tabTitleList = tabTitleList;
|
||||||
|
LogUtils.d(MainActivity.TAG, "LazyLoadPagerAdapter: 初始化完成,Fragment数量=" + fragmentList.size());
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public Fragment getItem(int position) {
|
||||||
|
return fragmentList.get(position);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getCount() {
|
||||||
|
return fragmentList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public CharSequence getPageTitle(int position) {
|
||||||
|
return tabTitleList.get(position);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 【已删除】移除setPrimaryItem方法,避免与手动初始化+onPageSelected回调冲突
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,116 @@
|
|||||||
|
package cc.winboll.studio.contacts.activities;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.appcompat.widget.Toolbar;
|
||||||
|
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.libaes.interfaces.IWinBoLLActivity;
|
||||||
|
import cc.winboll.studio.libaes.models.APPInfo;
|
||||||
|
import cc.winboll.studio.libaes.utils.WinBoLLActivityManager;
|
||||||
|
import cc.winboll.studio.libaes.views.AboutView;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/03/31 15:15:54
|
||||||
|
* @Describe 应用介绍窗口
|
||||||
|
*/
|
||||||
|
public class AboutActivity extends WinBollActivity implements IWinBoLLActivity {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "AboutActivity";
|
||||||
|
private static final String BRANCH_NAME = "contacts";
|
||||||
|
|
||||||
|
// ====================== 成员变量区 ======================
|
||||||
|
private Context mContext;
|
||||||
|
private Toolbar mToolbar;
|
||||||
|
|
||||||
|
// ====================== 接口实现区 ======================
|
||||||
|
@Override
|
||||||
|
public Activity getActivity() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTag() {
|
||||||
|
return TAG;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 生命周期函数区 ======================
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onCreate: 关于页面开始创建");
|
||||||
|
|
||||||
|
mContext = this;
|
||||||
|
setContentView(R.layout.activity_about);
|
||||||
|
|
||||||
|
// 初始化工具栏
|
||||||
|
initToolbar();
|
||||||
|
// 初始化关于页面视图
|
||||||
|
initAboutView();
|
||||||
|
// 注册Activity管理
|
||||||
|
WinBoLLActivityManager.getInstance().add(this);
|
||||||
|
|
||||||
|
LogUtils.d(TAG, "onCreate: 关于页面初始化完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "onDestroy: 关于页面开始销毁");
|
||||||
|
WinBoLLActivityManager.getInstance().registeRemove(this);
|
||||||
|
LogUtils.d(TAG, "onDestroy: 关于页面销毁完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 控件初始化函数区 ======================
|
||||||
|
private void initToolbar() {
|
||||||
|
LogUtils.d(TAG, "initToolbar: 初始化工具栏");
|
||||||
|
// Java7 适配:添加强制类型转换
|
||||||
|
mToolbar = (Toolbar) findViewById(R.id.toolbar);
|
||||||
|
setSupportActionBar(mToolbar);
|
||||||
|
mToolbar.setSubtitle(TAG);
|
||||||
|
// 非空判断,避免空指针异常
|
||||||
|
if (getSupportActionBar() != null) {
|
||||||
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private void initAboutView() {
|
||||||
|
LogUtils.d(TAG, "initAboutView: 初始化关于页面内容视图");
|
||||||
|
AboutView aboutView = createAboutView();
|
||||||
|
LinearLayout layout = (LinearLayout) findViewById(R.id.aboutviewroot_ll);
|
||||||
|
|
||||||
|
ViewGroup.LayoutParams params = new ViewGroup.LayoutParams(
|
||||||
|
ViewGroup.LayoutParams.MATCH_PARENT,
|
||||||
|
ViewGroup.LayoutParams.MATCH_PARENT
|
||||||
|
);
|
||||||
|
layout.addView(aboutView, params);
|
||||||
|
LogUtils.d(TAG, "initAboutView: AboutView已添加到布局");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 业务逻辑函数区 ======================
|
||||||
|
private AboutView createAboutView() {
|
||||||
|
LogUtils.d(TAG, "createAboutView: 构建APP信息并创建AboutView");
|
||||||
|
APPInfo appInfo = new APPInfo();
|
||||||
|
appInfo.setAppName("Contacts");
|
||||||
|
appInfo.setAppIcon(cc.winboll.studio.libaes.R.drawable.ic_winboll);
|
||||||
|
appInfo.setAppDescription("这是可以根据正则表达式匹配拦截骚扰电话的手机拨号应用。");
|
||||||
|
appInfo.setAppGitName("WinBoLL");
|
||||||
|
appInfo.setAppGitOwner("Studio");
|
||||||
|
appInfo.setAppGitAPPBranch(BRANCH_NAME);
|
||||||
|
appInfo.setAppGitAPPSubProjectFolder(BRANCH_NAME);
|
||||||
|
appInfo.setAppHomePage("https://www.winboll.cc/apks/index.php?project=Contacts");
|
||||||
|
appInfo.setAppAPKName("Contacts");
|
||||||
|
appInfo.setAppAPKFolderName("Contacts");
|
||||||
|
|
||||||
|
return new AboutView(mContext, appInfo);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,159 @@
|
|||||||
|
package cc.winboll.studio.contacts.activities;
|
||||||
|
|
||||||
|
import android.Manifest;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.telephony.PhoneStateListener;
|
||||||
|
import android.telephony.TelephonyManager;
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.Button;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.core.app.ActivityCompat;
|
||||||
|
import androidx.core.content.ContextCompat;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/02/20 17:15:46
|
||||||
|
* @Describe 拨号窗口
|
||||||
|
*/
|
||||||
|
public class CallActivity extends AppCompatActivity {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "CallActivity";
|
||||||
|
private static final int REQUEST_CALL_PHONE = 1;
|
||||||
|
|
||||||
|
// ====================== UI控件区 ======================
|
||||||
|
private EditText phoneNumberEditText;
|
||||||
|
private TextView callStatusTextView;
|
||||||
|
private Button dialButton;
|
||||||
|
|
||||||
|
// ====================== 业务成员区 ======================
|
||||||
|
private TelephonyManager telephonyManager;
|
||||||
|
private MyPhoneStateListener phoneStateListener;
|
||||||
|
|
||||||
|
// ====================== 生命周期函数区 ======================
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onCreate: 拨号页面开始创建");
|
||||||
|
setContentView(R.layout.activity_call);
|
||||||
|
|
||||||
|
// 初始化控件
|
||||||
|
initViews();
|
||||||
|
// 初始化电话状态监听
|
||||||
|
initPhoneStateListener();
|
||||||
|
LogUtils.d(TAG, "onCreate: 拨号页面初始化完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "onDestroy: 拨号页面开始销毁");
|
||||||
|
// 取消电话状态监听,避免内存泄漏
|
||||||
|
if (telephonyManager != null && phoneStateListener != null) {
|
||||||
|
telephonyManager.listen(phoneStateListener, PhoneStateListener.LISTEN_NONE);
|
||||||
|
LogUtils.d(TAG, "onDestroy: 电话状态监听已取消");
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "onDestroy: 拨号页面销毁完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 权限回调函数区 ======================
|
||||||
|
@Override
|
||||||
|
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
|
||||||
|
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
|
||||||
|
LogUtils.d(TAG, "onRequestPermissionsResult: 权限请求回调,requestCode=" + requestCode);
|
||||||
|
if (requestCode == REQUEST_CALL_PHONE) {
|
||||||
|
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
LogUtils.d(TAG, "onRequestPermissionsResult: 拨打电话权限授予成功");
|
||||||
|
String phoneNumber = phoneNumberEditText.getText().toString().trim();
|
||||||
|
dialPhoneNumber(phoneNumber);
|
||||||
|
} else {
|
||||||
|
LogUtils.w(TAG, "onRequestPermissionsResult: 拨打电话权限被拒绝");
|
||||||
|
Toast.makeText(this, "未授予拨打电话权限", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 控件初始化函数区 ======================
|
||||||
|
private void initViews() {
|
||||||
|
LogUtils.d(TAG, "initViews: 初始化UI控件");
|
||||||
|
// Java7 适配:添加强制类型转换
|
||||||
|
phoneNumberEditText = (EditText) findViewById(R.id.phone_number);
|
||||||
|
dialButton = (Button) findViewById(R.id.dial_button);
|
||||||
|
callStatusTextView = (TextView) findViewById(R.id.call_status);
|
||||||
|
|
||||||
|
// 设置拨号按钮点击事件
|
||||||
|
dialButton.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
String phoneNumber = phoneNumberEditText.getText().toString().trim();
|
||||||
|
LogUtils.d(TAG, "initViews: 拨号按钮点击,号码=" + phoneNumber);
|
||||||
|
if (phoneNumber.isEmpty()) {
|
||||||
|
Toast.makeText(CallActivity.this, "请输入电话号码", Toast.LENGTH_SHORT).show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 权限检查
|
||||||
|
if (ContextCompat.checkSelfPermission(CallActivity.this, Manifest.permission.CALL_PHONE)
|
||||||
|
!= PackageManager.PERMISSION_GRANTED) {
|
||||||
|
LogUtils.w(TAG, "initViews: 拨打电话权限未授予,发起权限申请");
|
||||||
|
ActivityCompat.requestPermissions(CallActivity.this,
|
||||||
|
new String[]{Manifest.permission.CALL_PHONE},
|
||||||
|
REQUEST_CALL_PHONE);
|
||||||
|
} else {
|
||||||
|
dialPhoneNumber(phoneNumber);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 电话状态监听初始化函数区 ======================
|
||||||
|
private void initPhoneStateListener() {
|
||||||
|
LogUtils.d(TAG, "initPhoneStateListener: 初始化电话状态监听");
|
||||||
|
telephonyManager = (TelephonyManager) getSystemService(TELEPHONY_SERVICE);
|
||||||
|
phoneStateListener = new MyPhoneStateListener();
|
||||||
|
telephonyManager.listen(phoneStateListener, PhoneStateListener.LISTEN_CALL_STATE);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 核心业务函数区 ======================
|
||||||
|
private void dialPhoneNumber(String phoneNumber) {
|
||||||
|
LogUtils.d(TAG, "dialPhoneNumber: 发起拨号,号码=" + phoneNumber);
|
||||||
|
Intent intent = new Intent(Intent.ACTION_CALL);
|
||||||
|
intent.setData(android.net.Uri.parse("tel:" + phoneNumber));
|
||||||
|
if (ActivityCompat.checkSelfPermission(this, Manifest.permission.CALL_PHONE) != PackageManager.PERMISSION_GRANTED) {
|
||||||
|
LogUtils.e(TAG, "dialPhoneNumber: 拨打电话权限缺失,拨号失败");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
startActivity(intent);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 内部电话状态监听类 ======================
|
||||||
|
private class MyPhoneStateListener extends PhoneStateListener {
|
||||||
|
@Override
|
||||||
|
public void onCallStateChanged(int state, String incomingNumber) {
|
||||||
|
super.onCallStateChanged(state, incomingNumber);
|
||||||
|
switch (state) {
|
||||||
|
case TelephonyManager.CALL_STATE_IDLE:
|
||||||
|
callStatusTextView.setText("电话已挂断");
|
||||||
|
LogUtils.d(TAG, "MyPhoneStateListener: 通话状态-挂断");
|
||||||
|
break;
|
||||||
|
case TelephonyManager.CALL_STATE_OFFHOOK:
|
||||||
|
callStatusTextView.setText("正在通话中");
|
||||||
|
LogUtils.d(TAG, "MyPhoneStateListener: 通话状态-通话中");
|
||||||
|
break;
|
||||||
|
case TelephonyManager.CALL_STATE_RINGING:
|
||||||
|
callStatusTextView.setText("来电: " + incomingNumber);
|
||||||
|
LogUtils.d(TAG, "MyPhoneStateListener: 通话状态-来电,号码=" + incomingNumber);
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,80 @@
|
|||||||
|
package cc.winboll.studio.contacts.activities;
|
||||||
|
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.net.Uri;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.Button;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/02/20 20:18:26
|
||||||
|
* @Describe 拨号盘窗口(跳转到系统拨号界面)
|
||||||
|
*/
|
||||||
|
public class DialerActivity extends AppCompatActivity {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "DialerActivity";
|
||||||
|
|
||||||
|
// ====================== UI控件区 ======================
|
||||||
|
private EditText phoneNumberEditText;
|
||||||
|
private Button dialButton;
|
||||||
|
|
||||||
|
// ====================== 生命周期函数区 ======================
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onCreate: 拨号盘页面开始创建");
|
||||||
|
setContentView(R.layout.activity_dialer);
|
||||||
|
|
||||||
|
// 初始化UI控件与点击事件
|
||||||
|
initViews();
|
||||||
|
LogUtils.d(TAG, "onCreate: 拨号盘页面初始化完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "onDestroy: 拨号盘页面已销毁");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 控件初始化函数区 ======================
|
||||||
|
private void initViews() {
|
||||||
|
LogUtils.d(TAG, "initViews: 初始化UI控件");
|
||||||
|
// Java7 适配:添加强制类型转换
|
||||||
|
phoneNumberEditText = (EditText) findViewById(R.id.phone_number_edit_text);
|
||||||
|
dialButton = (Button) findViewById(R.id.dial_button);
|
||||||
|
|
||||||
|
// 设置拨号按钮点击事件
|
||||||
|
dialButton.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
String phoneNumber = phoneNumberEditText.getText().toString().trim();
|
||||||
|
LogUtils.d(TAG, "initViews: 拨号按钮点击,输入号码=" + phoneNumber);
|
||||||
|
|
||||||
|
// 空号码校验
|
||||||
|
if (phoneNumber.isEmpty()) {
|
||||||
|
LogUtils.w(TAG, "initViews: 拨号失败,号码为空");
|
||||||
|
Toast.makeText(DialerActivity.this, "请输入有效电话号码", Toast.LENGTH_SHORT).show();
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 跳转到系统拨号界面
|
||||||
|
Intent intent = new Intent(Intent.ACTION_DIAL, Uri.parse("tel:" + phoneNumber));
|
||||||
|
if (intent.resolveActivity(getPackageManager()) != null) {
|
||||||
|
startActivity(intent);
|
||||||
|
LogUtils.d(TAG, "initViews: 成功跳转到系统拨号界面");
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "initViews: 跳转失败,无可用拨号应用");
|
||||||
|
Toast.makeText(DialerActivity.this, "未找到可用拨号应用", Toast.LENGTH_SHORT).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,613 @@
|
|||||||
|
package cc.winboll.studio.contacts.activities;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.DialogInterface;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.media.AudioManager;
|
||||||
|
import android.net.Uri;
|
||||||
|
import android.os.Build;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.provider.Settings;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.WindowManager;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import android.widget.SeekBar;
|
||||||
|
import android.widget.Switch;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import androidx.appcompat.app.AlertDialog;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import androidx.appcompat.widget.Toolbar;
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.contacts.adapters.PhoneConnectRuleAdapter;
|
||||||
|
import cc.winboll.studio.contacts.bobulltoon.TomCat;
|
||||||
|
import cc.winboll.studio.contacts.dun.Rules;
|
||||||
|
import cc.winboll.studio.contacts.model.MainServiceBean;
|
||||||
|
import cc.winboll.studio.contacts.model.PhoneConnectRuleBean;
|
||||||
|
import cc.winboll.studio.contacts.model.RingTongBean;
|
||||||
|
import cc.winboll.studio.contacts.model.SettingsBean;
|
||||||
|
import cc.winboll.studio.contacts.services.MainService;
|
||||||
|
import cc.winboll.studio.contacts.views.DuInfoTextView;
|
||||||
|
import cc.winboll.studio.libaes.interfaces.IWinBoLLActivity;
|
||||||
|
import cc.winboll.studio.libaes.utils.WinBoLLActivityManager;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
import java.lang.reflect.Field;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/02/21 05:37:42
|
||||||
|
* @Describe Contacts 设置页面(完全适配 API 30 + Java 7 语法)
|
||||||
|
* 核心优化:1. 移除高版本API依赖 2. Java7规范写法 3. 强化内存泄漏防护 4. 版本判断硬编码 5. LogUtils统一日志管理
|
||||||
|
*/
|
||||||
|
public class SettingsActivity extends WinBollActivity implements IWinBoLLActivity {
|
||||||
|
|
||||||
|
// ====================== 常量定义区(置顶,统一管理) ======================
|
||||||
|
public static final String TAG = "SettingsActivity";
|
||||||
|
// API版本硬编码(替代Build.VERSION_CODES,适配Java7)
|
||||||
|
private static final int ANDROID_6_API = 23;
|
||||||
|
|
||||||
|
// ====================== 静态成员属性区 ======================
|
||||||
|
private static DuInfoTextView sDuInfoTextView; // 规范命名:静态属性加s前缀
|
||||||
|
|
||||||
|
// ====================== 数据业务属性区 ======================
|
||||||
|
private int mStreamMaxVolume; // 铃音最大音量
|
||||||
|
private int mStreamVolume; // 当前铃音音量
|
||||||
|
private List<PhoneConnectRuleBean> mRuleList; // 通话规则列表
|
||||||
|
private PhoneConnectRuleAdapter mRuleAdapter; // 规则列表适配器
|
||||||
|
|
||||||
|
// ====================== UI控件属性区(统一归类,规范命名) ======================
|
||||||
|
private Toolbar mToolbar; // 顶部工具栏
|
||||||
|
private Switch mSwMainService; // 主服务开关
|
||||||
|
private SeekBar mSbVolume; // 音量调节条
|
||||||
|
private TextView mTvVolume; // 音量显示文本
|
||||||
|
private Switch mSwEnableDun; // 云盾功能开关
|
||||||
|
private EditText mEtDunTotalCount; // 云盾总次数输入框
|
||||||
|
private EditText mEtDunResumeSecondCount; // 云盾恢复秒数输入框
|
||||||
|
private EditText mEtDunResumeCount; // 云盾恢复次数输入框
|
||||||
|
private RecyclerView mRvRuleList; // 规则列表RecyclerView
|
||||||
|
private EditText mEtBoBullToonUrl; // BoBullToon地址输入框
|
||||||
|
private EditText mEtSearchPhone; // 号码查询输入框
|
||||||
|
|
||||||
|
// ====================== 接口实现区(IWinBoLLActivity规范实现) ======================
|
||||||
|
@Override
|
||||||
|
public AppCompatActivity getActivity() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTag() {
|
||||||
|
return TAG;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 生命周期函数区(按执行顺序排列) ======================
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onCreate: 设置页面启动");
|
||||||
|
setContentView(R.layout.activity_settings);
|
||||||
|
|
||||||
|
// 初始化核心流程(按优先级执行)
|
||||||
|
initToolbar(); // 工具栏初始化(优先)
|
||||||
|
initMainServiceSwitch();// 主服务开关初始化
|
||||||
|
initVolumeControl(); // 音量控制初始化
|
||||||
|
initRuleRecyclerView(); // 规则列表初始化
|
||||||
|
initDunSettings(); // 云盾设置初始化
|
||||||
|
initBoBullToonViews(); // BoBullToon功能初始化
|
||||||
|
|
||||||
|
LogUtils.d(TAG, "onCreate: 设置页面初始化完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "onDestroy: 设置页面销毁");
|
||||||
|
// 内存泄漏防护:清空所有引用(静态+成员+UI)
|
||||||
|
sDuInfoTextView = null;
|
||||||
|
mRuleList = null;
|
||||||
|
mRuleAdapter = null;
|
||||||
|
mToolbar = null;
|
||||||
|
mSwMainService = null;
|
||||||
|
mSbVolume = null;
|
||||||
|
mTvVolume = null;
|
||||||
|
mSwEnableDun = null;
|
||||||
|
mEtDunTotalCount = null;
|
||||||
|
mEtDunResumeSecondCount = null;
|
||||||
|
mEtDunResumeCount = null;
|
||||||
|
mRvRuleList = null;
|
||||||
|
mEtBoBullToonUrl = null;
|
||||||
|
mEtSearchPhone = null;
|
||||||
|
LogUtils.d(TAG, "onDestroy: 设置页面资源清理完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 初始化函数区(按功能模块归类) ======================
|
||||||
|
/**
|
||||||
|
* 初始化顶部工具栏(后退按钮+标题)
|
||||||
|
*/
|
||||||
|
private void initToolbar() {
|
||||||
|
LogUtils.d(TAG, "initToolbar: 初始化工具栏");
|
||||||
|
mToolbar = (Toolbar) findViewById(R.id.activitymainToolbar1);
|
||||||
|
setSupportActionBar(mToolbar);
|
||||||
|
|
||||||
|
// 显示后退按钮(空指针防护)
|
||||||
|
if (getSupportActionBar() != null) {
|
||||||
|
getSupportActionBar().setDisplayHomeAsUpEnabled(true);
|
||||||
|
getSupportActionBar().setSubtitle(TAG);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 后退按钮点击事件(Java7匿名内部类)
|
||||||
|
mToolbar.setNavigationOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
LogUtils.d(TAG, "initToolbar: 点击后退按钮,关闭页面");
|
||||||
|
finish();
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化主服务开关(联动MainService启停)
|
||||||
|
*/
|
||||||
|
private void initMainServiceSwitch() {
|
||||||
|
LogUtils.d(TAG, "initMainServiceSwitch: 初始化主服务开关");
|
||||||
|
mSwMainService = (Switch) findViewById(R.id.sw_mainservice);
|
||||||
|
MainServiceBean serviceBean = MainServiceBean.loadBean(this, MainServiceBean.class);
|
||||||
|
|
||||||
|
// 加载开关状态(空指针防护)
|
||||||
|
boolean isServiceEnable = serviceBean != null && serviceBean.isEnable();
|
||||||
|
mSwMainService.setChecked(isServiceEnable);
|
||||||
|
LogUtils.d(TAG, "initMainServiceSwitch: 主服务当前状态:" + (isServiceEnable ? "启用" : "禁用"));
|
||||||
|
|
||||||
|
// 开关点击事件
|
||||||
|
mSwMainService.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
boolean isChecked = mSwMainService.isChecked();
|
||||||
|
LogUtils.d(TAG, "initMainServiceSwitch: 主服务开关切换:" + (isChecked ? "启用" : "禁用"));
|
||||||
|
if (isChecked) {
|
||||||
|
MainService.startMainServiceAndSaveStatus(SettingsActivity.this);
|
||||||
|
} else {
|
||||||
|
MainService.stopMainServiceAndSaveStatus(SettingsActivity.this);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化音量控制(SeekBar+音量显示+配置保存)
|
||||||
|
*/
|
||||||
|
private void initVolumeControl() {
|
||||||
|
LogUtils.d(TAG, "initVolumeControl: 初始化音量控制");
|
||||||
|
mSbVolume = (SeekBar) findViewById(R.id.bellvolume);
|
||||||
|
mTvVolume = (TextView) findViewById(R.id.tv_volume);
|
||||||
|
final AudioManager audioManager = (AudioManager) getSystemService(Context.AUDIO_SERVICE);
|
||||||
|
|
||||||
|
// 空指针防护:AudioManager获取失败直接返回
|
||||||
|
if (audioManager == null) {
|
||||||
|
LogUtils.e(TAG, "initVolumeControl: AudioManager获取失败,音量控制初始化失败");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 初始化音量参数
|
||||||
|
mStreamMaxVolume = audioManager.getStreamMaxVolume(AudioManager.STREAM_RING);
|
||||||
|
mStreamVolume = audioManager.getStreamVolume(AudioManager.STREAM_RING);
|
||||||
|
mSbVolume.setMax(mStreamMaxVolume);
|
||||||
|
mSbVolume.setProgress(mStreamVolume);
|
||||||
|
updateVolumeDisplay(); // 更新音量文本显示
|
||||||
|
|
||||||
|
// 音量调节监听
|
||||||
|
mSbVolume.setOnSeekBarChangeListener(new SeekBar.OnSeekBarChangeListener() {
|
||||||
|
@Override
|
||||||
|
public void onProgressChanged(SeekBar seekBar, int progress, boolean fromUser) {
|
||||||
|
if (fromUser) {
|
||||||
|
LogUtils.d(TAG, "initVolumeControl: 音量调节至:" + progress + "/" + mStreamMaxVolume);
|
||||||
|
// 实时更新系统音量+保存配置
|
||||||
|
audioManager.setStreamVolume(AudioManager.STREAM_RING, progress, 0);
|
||||||
|
RingTongBean ringBean = RingTongBean.loadBean(SettingsActivity.this, RingTongBean.class);
|
||||||
|
if (ringBean == null) {
|
||||||
|
ringBean = new RingTongBean();
|
||||||
|
}
|
||||||
|
ringBean.setStreamVolume(progress);
|
||||||
|
RingTongBean.saveBean(SettingsActivity.this, ringBean);
|
||||||
|
mStreamVolume = progress;
|
||||||
|
updateVolumeDisplay();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onStartTrackingTouch(SeekBar seekBar) {}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onStopTrackingTouch(SeekBar seekBar) {}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化通话规则列表(加载黑白名单规则)
|
||||||
|
*/
|
||||||
|
private void initRuleRecyclerView() {
|
||||||
|
LogUtils.d(TAG, "initRuleRecyclerView: 初始化规则列表");
|
||||||
|
mRvRuleList = (RecyclerView) findViewById(R.id.recycler_view);
|
||||||
|
mRvRuleList.setLayoutManager(new LinearLayoutManager(this));
|
||||||
|
|
||||||
|
// 加载规则数据
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
if (rules == null) {
|
||||||
|
LogUtils.e(TAG, "initRuleRecyclerView: Rules实例获取失败,列表初始化失败");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
mRuleList = rules.getPhoneBlacRuleBeanList();
|
||||||
|
mRuleAdapter = new PhoneConnectRuleAdapter(this, mRuleList);
|
||||||
|
mRvRuleList.setAdapter(mRuleAdapter);
|
||||||
|
LogUtils.d(TAG, "initRuleRecyclerView: 规则列表加载完成,共" + mRuleList.size() + "条规则");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化云盾设置(参数加载+开关联动)
|
||||||
|
*/
|
||||||
|
private void initDunSettings() {
|
||||||
|
LogUtils.d(TAG, "initDunSettings: 初始化云盾设置");
|
||||||
|
sDuInfoTextView = (DuInfoTextView) findViewById(R.id.tv_DunInfo);
|
||||||
|
mSwEnableDun = (Switch) findViewById(R.id.sw_IsEnableDun);
|
||||||
|
mEtDunTotalCount = (EditText) findViewById(R.id.et_DunTotalCount);
|
||||||
|
mEtDunResumeSecondCount = (EditText) findViewById(R.id.et_DunResumeSecondCount);
|
||||||
|
mEtDunResumeCount = (EditText) findViewById(R.id.et_DunResumeCount);
|
||||||
|
|
||||||
|
// 加载云盾配置
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
if (rules == null) {
|
||||||
|
LogUtils.e(TAG, "initDunSettings: Rules实例获取失败,云盾初始化失败");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
SettingsBean dunSettings = rules.getSettingsModel();
|
||||||
|
if (dunSettings == null) {
|
||||||
|
LogUtils.e(TAG, "initDunSettings: 云盾配置获取失败");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 填充配置参数
|
||||||
|
mEtDunTotalCount.setText(String.valueOf(dunSettings.getDunTotalCount()));
|
||||||
|
mEtDunResumeSecondCount.setText(String.valueOf(dunSettings.getDunResumeSecondCount()));
|
||||||
|
mEtDunResumeCount.setText(String.valueOf(dunSettings.getDunResumeCount()));
|
||||||
|
mSwEnableDun.setChecked(dunSettings.isEnableDun());
|
||||||
|
|
||||||
|
// 开关联动:启用云盾时禁用参数编辑
|
||||||
|
boolean isDunEnable = dunSettings.isEnableDun();
|
||||||
|
mEtDunTotalCount.setEnabled(!isDunEnable);
|
||||||
|
mEtDunResumeSecondCount.setEnabled(!isDunEnable);
|
||||||
|
mEtDunResumeCount.setEnabled(!isDunEnable);
|
||||||
|
LogUtils.d(TAG, "initDunSettings: 云盾当前状态:" + (isDunEnable ? "启用" : "禁用"));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化BoBullToon功能(地址配置+号码查询)
|
||||||
|
*/
|
||||||
|
private void initBoBullToonViews() {
|
||||||
|
LogUtils.d(TAG, "initBoBullToonViews: 初始化BoBullToon功能");
|
||||||
|
mEtBoBullToonUrl = (EditText) findViewById(R.id.bobulltoonurl_et);
|
||||||
|
mEtSearchPhone = (EditText) findViewById(R.id.activitysettingsEditText1);
|
||||||
|
|
||||||
|
// 加载保存的地址
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
if (rules != null) {
|
||||||
|
mEtBoBullToonUrl.setText(rules.getBoBullToonURL());
|
||||||
|
LogUtils.d(TAG, "initBoBullToonViews: 加载BoBullToon地址完成");
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "initBoBullToonViews: Rules实例获取失败,地址加载失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 点击事件回调区(按功能模块归类) ======================
|
||||||
|
/**
|
||||||
|
* 云盾开关点击事件(联动参数编辑权限+配置保存)
|
||||||
|
*/
|
||||||
|
public void onSW_IsEnableDun(View view) {
|
||||||
|
boolean isChecked = mSwEnableDun.isChecked();
|
||||||
|
LogUtils.d(TAG, "onSW_IsEnableDun: 云盾开关切换:" + (isChecked ? "启用" : "禁用"));
|
||||||
|
|
||||||
|
// 联动参数编辑权限
|
||||||
|
mEtDunTotalCount.setEnabled(!isChecked);
|
||||||
|
mEtDunResumeSecondCount.setEnabled(!isChecked);
|
||||||
|
mEtDunResumeCount.setEnabled(!isChecked);
|
||||||
|
|
||||||
|
// 保存配置
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
if (rules == null) {
|
||||||
|
LogUtils.e(TAG, "onSW_IsEnableDun: Rules实例获取失败,配置保存失败");
|
||||||
|
mSwEnableDun.setChecked(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
SettingsBean dunSettings = rules.getSettingsModel();
|
||||||
|
if (dunSettings == null) {
|
||||||
|
LogUtils.e(TAG, "onSW_IsEnableDun: 云盾配置获取失败,保存失败");
|
||||||
|
mSwEnableDun.setChecked(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 启用云盾时校验参数合法性
|
||||||
|
if (isChecked) {
|
||||||
|
try {
|
||||||
|
String totalCountStr = mEtDunTotalCount.getText().toString().trim();
|
||||||
|
String resumeSecStr = mEtDunResumeSecondCount.getText().toString().trim();
|
||||||
|
String resumeCountStr = mEtDunResumeCount.getText().toString().trim();
|
||||||
|
|
||||||
|
// 空参数校验
|
||||||
|
if (totalCountStr.isEmpty() || resumeSecStr.isEmpty() || resumeCountStr.isEmpty()) {
|
||||||
|
throw new NumberFormatException("参数不能为空");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 转换参数并保存
|
||||||
|
int totalCount = Integer.parseInt(totalCountStr);
|
||||||
|
int resumeSec = Integer.parseInt(resumeSecStr);
|
||||||
|
int resumeCount = Integer.parseInt(resumeCountStr);
|
||||||
|
dunSettings.setDunTotalCount(totalCount);
|
||||||
|
dunSettings.setDunResumeSecondCount(resumeSec);
|
||||||
|
dunSettings.setDunResumeCount(resumeCount);
|
||||||
|
LogUtils.d(TAG, "onSW_IsEnableDun: 云盾参数保存完成,总次数:" + totalCount + ",恢复秒数:" + resumeSec);
|
||||||
|
|
||||||
|
// 提示信息
|
||||||
|
String toastMsg = totalCount == 1 ? "电话骚扰防御力几乎为0" : "连拨" + totalCount + "次后接通电话";
|
||||||
|
ToastUtils.show(toastMsg);
|
||||||
|
} catch (NumberFormatException e) {
|
||||||
|
LogUtils.e(TAG, "onSW_IsEnableDun: 云盾参数格式错误", e);
|
||||||
|
ToastUtils.show("参数格式错误,请输入整数");
|
||||||
|
mSwEnableDun.setChecked(false);
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 保存开关状态并刷新配置
|
||||||
|
dunSettings.setIsEnableDun(isChecked);
|
||||||
|
rules.saveDun();
|
||||||
|
rules.reload();
|
||||||
|
LogUtils.d(TAG, "onSW_IsEnableDun: 云盾配置保存完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 添加新通话规则(黑白名单)
|
||||||
|
*/
|
||||||
|
public void onAddNewConnectionRule(View view) {
|
||||||
|
LogUtils.d(TAG, "onAddNewConnectionRule: 添加新通话规则");
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
if (rules == null) {
|
||||||
|
LogUtils.e(TAG, "onAddNewConnectionRule: Rules实例获取失败,添加失败");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
mRuleList.add(new PhoneConnectRuleBean());
|
||||||
|
rules.saveRules();
|
||||||
|
mRuleAdapter.notifyDataSetChanged();
|
||||||
|
LogUtils.d(TAG, "onAddNewConnectionRule: 规则添加完成,当前共" + mRuleList.size() + "条规则");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 跳转默认电话应用设置
|
||||||
|
*/
|
||||||
|
public void onDefaultPhone(View view) {
|
||||||
|
LogUtils.d(TAG, "onDefaultPhone: 跳转默认电话应用设置");
|
||||||
|
startActivity(new Intent(Settings.ACTION_MANAGE_DEFAULT_APPS_SETTINGS));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 悬浮窗权限检查与请求
|
||||||
|
*/
|
||||||
|
public void onCanDrawOverlays(View view) {
|
||||||
|
LogUtils.d(TAG, "onCanDrawOverlays: 检查悬浮窗权限");
|
||||||
|
// API6.0+校验权限
|
||||||
|
if (Build.VERSION.SDK_INT >= ANDROID_6_API && !Settings.canDrawOverlays(this)) {
|
||||||
|
LogUtils.d(TAG, "onCanDrawOverlays: 未开启悬浮窗权限,发起请求");
|
||||||
|
showDrawOverlayRequestDialog();
|
||||||
|
} else {
|
||||||
|
ToastUtils.show("悬浮窗权限已开启");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 清理BoBullToon本地数据
|
||||||
|
*/
|
||||||
|
public void onCleanBoBullToonData(View view) {
|
||||||
|
LogUtils.d(TAG, "onCleanBoBullToonData: 清理BoBullToon数据");
|
||||||
|
TomCat tomCat = TomCat.getInstance(this);
|
||||||
|
if (tomCat != null) {
|
||||||
|
tomCat.cleanBoBullToon();
|
||||||
|
ToastUtils.show("BoBullToon数据已清理");
|
||||||
|
LogUtils.d(TAG, "onCleanBoBullToonData: 数据清理完成");
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "onCleanBoBullToonData: TomCat实例获取失败,清理失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 重置BoBullToon默认地址
|
||||||
|
*/
|
||||||
|
public void onResetBoBullToonURL(View view) {
|
||||||
|
LogUtils.d(TAG, "onResetBoBullToonURL: 重置BoBullToon地址");
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
if (rules == null) {
|
||||||
|
LogUtils.e(TAG, "onResetBoBullToonURL: Rules实例获取失败,重置失败");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
rules.resetDefaultBoBullToonURL();
|
||||||
|
mEtBoBullToonUrl.setText(rules.getBoBullToonURL());
|
||||||
|
ToastUtils.show("BoBullToon地址已重置为默认");
|
||||||
|
LogUtils.d(TAG, "onResetBoBullToonURL: 地址重置完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 下载BoBullToon数据(子线程执行,避免阻塞UI)
|
||||||
|
*/
|
||||||
|
public void onDownloadBoBullToon(View view) {
|
||||||
|
LogUtils.d(TAG, "onDownloadBoBullToon: 开始下载BoBullToon数据");
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
if (rules == null) {
|
||||||
|
LogUtils.e(TAG, "onDownloadBoBullToon: Rules实例获取失败,下载失败");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 校验并更新地址
|
||||||
|
String inputUrl = mEtBoBullToonUrl.getText().toString().trim();
|
||||||
|
String savedUrl = rules.getBoBullToonURL();
|
||||||
|
if (!inputUrl.equals(savedUrl)) {
|
||||||
|
rules.setBoBullToonURL(inputUrl);
|
||||||
|
LogUtils.d(TAG, "onDownloadBoBullToon: BoBullToon地址更新为:" + inputUrl);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 子线程下载(Java7匿名内部类)
|
||||||
|
final TomCat tomCat = TomCat.getInstance(this);
|
||||||
|
new Thread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
boolean downloadSuccess = tomCat != null && tomCat.downloadBoBullToon();
|
||||||
|
if (downloadSuccess) {
|
||||||
|
LogUtils.d(TAG, "onDownloadBoBullToon: 数据下载成功");
|
||||||
|
// 主线程更新UI
|
||||||
|
runOnUiThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
ToastUtils.show("BoBullToon下载成功");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
// 重启主服务+刷新配置
|
||||||
|
MainService.restartMainService(SettingsActivity.this);
|
||||||
|
Rules.getInstance(SettingsActivity.this).reload();
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "onDownloadBoBullToon: 数据下载失败");
|
||||||
|
runOnUiThread(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
ToastUtils.show("BoBullToon下载失败");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}).start();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 查询号码是否为BoBullToon号码
|
||||||
|
*/
|
||||||
|
public void onSearchBoBullToonPhone(View view) {
|
||||||
|
LogUtils.d(TAG, "onSearchBoBullToonPhone: 执行号码查询");
|
||||||
|
String phone = mEtSearchPhone.getText().toString().trim();
|
||||||
|
// 空号码校验
|
||||||
|
if (phone.isEmpty()) {
|
||||||
|
LogUtils.w(TAG, "onSearchBoBullToonPhone: 查询号码为空,取消查询");
|
||||||
|
ToastUtils.show("请输入查询号码");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 执行查询
|
||||||
|
TomCat tomCat = TomCat.getInstance(this);
|
||||||
|
if (tomCat == null || !tomCat.loadPhoneBoBullToon()) {
|
||||||
|
LogUtils.w(TAG, "onSearchBoBullToonPhone: BoBullToon数据未加载,查询失败");
|
||||||
|
ToastUtils.show("请先下载BoBullToon数据");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean isBoBullToon = tomCat.isPhoneBoBullToon(phone);
|
||||||
|
String resultMsg = isBoBullToon ? "是BoBullToon号码" : "非BoBullToon号码";
|
||||||
|
ToastUtils.show(resultMsg);
|
||||||
|
LogUtils.d(TAG, "onSearchBoBullToonPhone: 号码" + phone + "查询结果:" + resultMsg);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 跳转单元测试页面
|
||||||
|
*/
|
||||||
|
public void onUnitTest(View view) {
|
||||||
|
LogUtils.d(TAG, "onUnitTest: 跳转单元测试页面");
|
||||||
|
startActivity(new Intent(this, UnitTestActivity.class));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 跳转关于页面
|
||||||
|
*/
|
||||||
|
public void onAbout(View view) {
|
||||||
|
LogUtils.d(TAG, "onAbout: 跳转关于页面");
|
||||||
|
WinBoLLActivityManager.getInstance().startWinBoLLActivity(this, AboutActivity.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 跳转日志查看页面
|
||||||
|
*/
|
||||||
|
public void onLogView(View view) {
|
||||||
|
LogUtils.d(TAG, "onLogView: 跳转日志页面");
|
||||||
|
WinBoLLActivityManager.getInstance().startLogActivity(this);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 工具方法区(通用功能+权限相关) ======================
|
||||||
|
/**
|
||||||
|
* 更新音量显示文本(当前音量/最大音量)
|
||||||
|
*/
|
||||||
|
private void updateVolumeDisplay() {
|
||||||
|
mTvVolume.setText(mStreamVolume + "/" + mStreamMaxVolume);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 显示悬浮窗权限请求对话框
|
||||||
|
*/
|
||||||
|
private void showDrawOverlayRequestDialog() {
|
||||||
|
AlertDialog dialog = new AlertDialog.Builder(this)
|
||||||
|
.setTitle("权限请求")
|
||||||
|
.setMessage("为保证通话监听功能正常,需开启悬浮窗权限")
|
||||||
|
.setPositiveButton("去设置", new DialogInterface.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
|
dialog.dismiss();
|
||||||
|
jumpToDrawOverlaySettings();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.setNegativeButton("稍后", new DialogInterface.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(DialogInterface dialog, int which) {
|
||||||
|
dialog.dismiss();
|
||||||
|
}
|
||||||
|
})
|
||||||
|
.create();
|
||||||
|
|
||||||
|
// 解决对话框焦点问题
|
||||||
|
if (dialog.getWindow() != null) {
|
||||||
|
dialog.getWindow().setFlags(
|
||||||
|
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE,
|
||||||
|
WindowManager.LayoutParams.FLAG_NOT_FOCUSABLE);
|
||||||
|
}
|
||||||
|
dialog.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 跳转悬浮窗权限设置页面(反射适配低版本)
|
||||||
|
*/
|
||||||
|
private void jumpToDrawOverlaySettings() {
|
||||||
|
LogUtils.d(TAG, "jumpToDrawOverlaySettings: 跳转悬浮窗权限设置");
|
||||||
|
try {
|
||||||
|
// 反射获取设置页面Action(避免高版本API依赖)
|
||||||
|
Class<?> settingsClazz = Settings.class;
|
||||||
|
Field actionField = settingsClazz.getDeclaredField("ACTION_MANAGE_OVERLAY_PERMISSION");
|
||||||
|
String action = (String) actionField.get(null);
|
||||||
|
|
||||||
|
// 跳转当前应用权限设置页
|
||||||
|
Intent intent = new Intent(action);
|
||||||
|
intent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
intent.setData(Uri.parse("package:" + getPackageName()));
|
||||||
|
startActivity(intent);
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.e(TAG, "jumpToDrawOverlaySettings: 跳转权限设置失败", e);
|
||||||
|
Toast.makeText(this, "请手动在设置中开启悬浮窗权限", Toast.LENGTH_LONG).show();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 静态通知方法区(云盾信息更新) ======================
|
||||||
|
/**
|
||||||
|
* 通知云盾信息刷新(外部调用)
|
||||||
|
*/
|
||||||
|
public static void notifyDunInfoUpdate() {
|
||||||
|
if (sDuInfoTextView != null) {
|
||||||
|
LogUtils.d(TAG, "notifyDunInfoUpdate: 刷新云盾信息显示");
|
||||||
|
sDuInfoTextView.notifyInfoUpdate();
|
||||||
|
} else {
|
||||||
|
LogUtils.w(TAG, "notifyDunInfoUpdate: 云盾信息控件未初始化,刷新失败");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,154 @@
|
|||||||
|
package cc.winboll.studio.contacts.activities;
|
||||||
|
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.View;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.contacts.activities.UnitTestActivity;
|
||||||
|
import cc.winboll.studio.contacts.dun.Rules;
|
||||||
|
import cc.winboll.studio.contacts.services.LimitedTimeSpecialChannelService;
|
||||||
|
import cc.winboll.studio.contacts.utils.IntUtils;
|
||||||
|
import cc.winboll.studio.libaes.interfaces.IWinBoLLActivity;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.LogView;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/03/02 16:07:04
|
||||||
|
* @Describe 规则单元测试页面
|
||||||
|
*/
|
||||||
|
public class UnitTestActivity extends WinBollActivity implements IWinBoLLActivity {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "UnitTestActivity";
|
||||||
|
|
||||||
|
// ====================== UI控件区 ======================
|
||||||
|
private LogView logView;
|
||||||
|
private EditText etPhone;
|
||||||
|
|
||||||
|
// ====================== 接口实现区 ======================
|
||||||
|
@Override
|
||||||
|
public AppCompatActivity getActivity() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTag() {
|
||||||
|
return TAG;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 生命周期函数区 ======================
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onCreate: 单元测试页面开始创建");
|
||||||
|
setContentView(R.layout.activity_unittest);
|
||||||
|
|
||||||
|
// 初始化控件
|
||||||
|
initViews();
|
||||||
|
LogUtils.d(TAG, "onCreate: 单元测试页面初始化完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
protected void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "onDestroy: 单元测试页面开始销毁");
|
||||||
|
if (logView != null) {
|
||||||
|
// 若LogView有停止方法,建议调用避免资源泄漏
|
||||||
|
// logView.stop();
|
||||||
|
LogUtils.d(TAG, "onDestroy: LogView资源已处理");
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "onDestroy: 单元测试页面销毁完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 控件初始化函数区 ======================
|
||||||
|
private void initViews() {
|
||||||
|
LogUtils.d(TAG, "initViews: 初始化UI控件");
|
||||||
|
// Java7 适配:添加强制类型转换
|
||||||
|
logView = (LogView) findViewById(R.id.logview);
|
||||||
|
etPhone = (EditText) findViewById(R.id.phone_et);
|
||||||
|
|
||||||
|
// 启动日志视图
|
||||||
|
logView.start();
|
||||||
|
LogUtils.d(TAG, "initViews: LogView已启动");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 点击事件测试函数区 ======================
|
||||||
|
/**
|
||||||
|
* 测试单个号码匹配规则
|
||||||
|
*/
|
||||||
|
public void onTestPhone(View view) {
|
||||||
|
LogUtils.d(TAG, "onTestPhone: 开始测试单个号码规则匹配");
|
||||||
|
String phone = etPhone.getText().toString().trim();
|
||||||
|
if (phone.isEmpty()) {
|
||||||
|
LogUtils.w(TAG, "onTestPhone: 测试号码为空,跳过匹配");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
boolean isAllowed = rules.isAllowed(phone);
|
||||||
|
LogUtils.d(TAG, String.format("onTestPhone: 测试号码: %s | 匹配结果: %s", phone, isAllowed));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 批量测试预设号码规则匹配
|
||||||
|
*/
|
||||||
|
public void onTestMain(View view) {
|
||||||
|
LogUtils.d(TAG, "onTestMain: 开始批量测试号码规则匹配");
|
||||||
|
// 测试IntUtils工具类方法
|
||||||
|
LogUtils.d(TAG, "onTestMain: 执行 IntUtils.unittest_getIntInRange() 测试");
|
||||||
|
IntUtils.unittest_getIntInRange();
|
||||||
|
|
||||||
|
// 初始化规则实例
|
||||||
|
Rules rules = Rules.getInstance(this);
|
||||||
|
// 无规则时添加测试规则集
|
||||||
|
initTestRulesIfEmpty(rules);
|
||||||
|
|
||||||
|
// 预设测试号码列表
|
||||||
|
String[] testPhones = {
|
||||||
|
"16769764848", "16856582777", "17519703124",
|
||||||
|
"0205658955", "0108965253", "+8616769764848",
|
||||||
|
"4005816769764848", "95566"
|
||||||
|
};
|
||||||
|
|
||||||
|
// 遍历测试号码并输出结果
|
||||||
|
for (String phone : testPhones) {
|
||||||
|
boolean isAllowed = rules.isAllowed(phone);
|
||||||
|
LogUtils.d(TAG, String.format("onTestMain: 测试号码: %s | 匹配结果: %s", phone, isAllowed));
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "onTestMain: 批量号码规则测试完成");
|
||||||
|
|
||||||
|
new Thread(new Runnable(){
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
LimitedTimeSpecialChannelService.unitTest(UnitTestActivity.this);
|
||||||
|
}
|
||||||
|
}).start();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 私有工具函数区 ======================
|
||||||
|
/**
|
||||||
|
* 规则集为空时初始化测试规则
|
||||||
|
*/
|
||||||
|
private void initTestRulesIfEmpty(Rules rules) {
|
||||||
|
if (rules.getPhoneBlacRuleBeanList().size() == 0) {
|
||||||
|
LogUtils.d(TAG, "initTestRulesIfEmpty: 当前无规则,添加测试规则集");
|
||||||
|
// 规则1:中国手机号允许
|
||||||
|
rules.add("^1[3-9]\\d{9}$", true, true);
|
||||||
|
// 规则2:0660区号号码允许
|
||||||
|
rules.add("^0660\\d+$", true, true);
|
||||||
|
// 规则3:020区号号码允许
|
||||||
|
rules.add("^020\\d+$", true, true);
|
||||||
|
// 规则4:默认拒接所有号码
|
||||||
|
rules.add(".*", false, true);
|
||||||
|
|
||||||
|
// 保存规则到本地
|
||||||
|
rules.saveRules();
|
||||||
|
LogUtils.d(TAG, "initTestRulesIfEmpty: 测试规则集已保存");
|
||||||
|
} else {
|
||||||
|
LogUtils.d(TAG, "initTestRulesIfEmpty: 当前已有规则,跳过初始化");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,84 @@
|
|||||||
|
package cc.winboll.studio.contacts.activities;
|
||||||
|
|
||||||
|
import android.app.Activity;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.view.MenuItem;
|
||||||
|
import androidx.appcompat.app.AppCompatActivity;
|
||||||
|
import cc.winboll.studio.libaes.interfaces.IWinBoLLActivity;
|
||||||
|
import cc.winboll.studio.libaes.models.AESThemeBean;
|
||||||
|
import cc.winboll.studio.libaes.utils.AESThemeUtil;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/03/31 15:16:45
|
||||||
|
* @Describe 应用窗口基类,统一处理主题设置与导航返回
|
||||||
|
*/
|
||||||
|
public class WinBollActivity extends AppCompatActivity implements IWinBoLLActivity {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "WinBollActivity";
|
||||||
|
|
||||||
|
// ====================== 成员变量区 ======================
|
||||||
|
protected volatile AESThemeBean.ThemeType mThemeType;
|
||||||
|
|
||||||
|
// ====================== 接口实现区 ======================
|
||||||
|
@Override
|
||||||
|
public Activity getActivity() {
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public String getTag() {
|
||||||
|
return TAG;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 生命周期函数区 ======================
|
||||||
|
@Override
|
||||||
|
protected void onCreate(Bundle savedInstanceState) {
|
||||||
|
//LogUtils.d(TAG, "onCreate: 基类页面开始创建");
|
||||||
|
// 优先设置主题,再执行父类初始化
|
||||||
|
// mThemeType = getThemeType();
|
||||||
|
// setThemeStyle();
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
//LogUtils.d(TAG, "onCreate: 基类主题设置完成,当前主题类型=" + mThemeType);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 主题相关函数区 ======================
|
||||||
|
/**
|
||||||
|
* 获取当前应用主题类型
|
||||||
|
*/
|
||||||
|
AESThemeBean.ThemeType getThemeType() {
|
||||||
|
LogUtils.d(TAG, "getThemeType: 获取应用主题类型");
|
||||||
|
// 注释的SharedPreferences逻辑保留,便于后续扩展
|
||||||
|
/*SharedPreferences sharedPreferences = getSharedPreferences(
|
||||||
|
SHAREDPREFERENCES_NAME, MODE_PRIVATE);
|
||||||
|
return AESThemeBean.ThemeType.values()[((sharedPreferences.getInt(DRAWER_THEME_TYPE, AESThemeBean.ThemeType.DEFAULT.ordinal())))];
|
||||||
|
*/
|
||||||
|
return AESThemeBean.getThemeStyleType(AESThemeUtil.getThemeTypeID(getApplicationContext()));
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 应用当前主题样式
|
||||||
|
*/
|
||||||
|
void setThemeStyle() {
|
||||||
|
LogUtils.d(TAG, "setThemeStyle: 开始设置应用主题");
|
||||||
|
// 替换原注释逻辑,使用AESThemeUtil获取的主题ID
|
||||||
|
setTheme(AESThemeUtil.getThemeTypeID(getApplicationContext()));
|
||||||
|
LogUtils.d(TAG, "setThemeStyle: 主题设置完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 菜单与导航函数区 ======================
|
||||||
|
@Override
|
||||||
|
public boolean onOptionsItemSelected(MenuItem item) {
|
||||||
|
LogUtils.d(TAG, "onOptionsItemSelected: 菜单选项点击,itemId=" + item.getItemId());
|
||||||
|
// 处理导航栏返回按钮点击事件
|
||||||
|
// if (item.getItemId() == android.R.id.home) {
|
||||||
|
// LogUtils.d(TAG, "onOptionsItemSelected: 点击导航返回按钮,关闭当前页面");
|
||||||
|
// finish();
|
||||||
|
// return true;
|
||||||
|
// }
|
||||||
|
return super.onOptionsItemSelected(item);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,183 @@
|
|||||||
|
package cc.winboll.studio.contacts.adapters;
|
||||||
|
|
||||||
|
import android.content.ClipData;
|
||||||
|
import android.content.ClipboardManager;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.MenuItem;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.PopupMenu;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.contacts.model.CallLogModel;
|
||||||
|
import cc.winboll.studio.contacts.utils.ContactUtils;
|
||||||
|
import cc.winboll.studio.libaes.views.AOHPCTCSeekBar;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
import java.text.SimpleDateFormat;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.Locale;
|
||||||
|
import cc.winboll.studio.contacts.dun.Rules;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/02/26 13:09:32
|
||||||
|
* @Describe 通话记录列表适配器
|
||||||
|
*/
|
||||||
|
public class CallLogAdapter extends RecyclerView.Adapter<CallLogAdapter.CallLogViewHolder> {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "CallLogAdapter";
|
||||||
|
private static final SimpleDateFormat DATE_FORMAT = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss", Locale.getDefault());
|
||||||
|
|
||||||
|
// ====================== 成员变量区 ======================
|
||||||
|
private Context mContext;
|
||||||
|
private List<CallLogModel> callLogList;
|
||||||
|
private ContactUtils mContactUtils;
|
||||||
|
|
||||||
|
// ====================== 构造函数区 ======================
|
||||||
|
public CallLogAdapter(Context context, List<CallLogModel> callLogList) {
|
||||||
|
LogUtils.d(TAG, "CallLogAdapter: 初始化适配器,数据量=" + callLogList.size());
|
||||||
|
this.mContext = context;
|
||||||
|
this.callLogList = callLogList;
|
||||||
|
this.mContactUtils = ContactUtils.getInstance(mContext);
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 公共方法区 ======================
|
||||||
|
/**
|
||||||
|
* 重新加载联系人数据
|
||||||
|
*/
|
||||||
|
public void relaodContacts() {
|
||||||
|
LogUtils.d(TAG, "relaodContacts: 开始重新加载联系人数据");
|
||||||
|
this.mContactUtils.reloadContacts();
|
||||||
|
notifyDataSetChanged();
|
||||||
|
LogUtils.d(TAG, "relaodContacts: 联系人数据加载完成,列表已刷新");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== RecyclerView 重写方法区 ======================
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public CallLogViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
LogUtils.d(TAG, "onCreateViewHolder: 创建列表项ViewHolder");
|
||||||
|
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_call_log, parent, false);
|
||||||
|
return new CallLogViewHolder(view);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull CallLogViewHolder holder, int position) {
|
||||||
|
LogUtils.d(TAG, "onBindViewHolder: 绑定列表项数据,position=" + position);
|
||||||
|
final CallLogModel callLog = callLogList.get(position);
|
||||||
|
|
||||||
|
// 绑定通话号码与联系人名称
|
||||||
|
String contactName = mContactUtils.getContactName(callLog.getPhoneNumber());
|
||||||
|
String phoneText = callLog.getPhoneNumber() + "☎" + (contactName == null ? "" : contactName);
|
||||||
|
holder.phoneNumber.setText(phoneText);
|
||||||
|
|
||||||
|
// 号码长按弹出菜单事件
|
||||||
|
holder.phoneNumber.setOnLongClickListener(new View.OnLongClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onLongClick(View p1) {
|
||||||
|
showPhonePopupMenu(holder.phoneNumber, callLog);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 绑定通话状态与时间
|
||||||
|
holder.callStatus.setText(callLog.getCallStatus());
|
||||||
|
holder.callDate.setText(DATE_FORMAT.format(callLog.getCallDate()));
|
||||||
|
|
||||||
|
// 初始化滑动拨号SeekBar
|
||||||
|
initDialSeekBar(holder.dialAOHPCTCSeekBar, callLog);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return callLogList == null ? 0 : callLogList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 私有工具方法区 ======================
|
||||||
|
/**
|
||||||
|
* 显示号码操作弹窗菜单
|
||||||
|
*/
|
||||||
|
private void showPhonePopupMenu(View anchorView, final CallLogModel callLog) {
|
||||||
|
LogUtils.d(TAG, "showPhonePopupMenu: 弹出号码操作菜单");
|
||||||
|
PopupMenu menu = new PopupMenu(mContext, anchorView);
|
||||||
|
menu.getMenuInflater().inflate(R.menu.toolbar_calllog_phonenumber, menu.getMenu());
|
||||||
|
|
||||||
|
menu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onMenuItemClick(MenuItem menuItem) {
|
||||||
|
int itemId = menuItem.getItemId();
|
||||||
|
if (itemId == R.id.item_calllog_phonenumber_copy) {
|
||||||
|
// 复制号码到剪贴板
|
||||||
|
ClipboardManager clipboard = (ClipboardManager) mContext.getSystemService(Context.CLIPBOARD_SERVICE);
|
||||||
|
ClipData clip = ClipData.newPlainText("call_log_phone", callLog.getPhoneNumber());
|
||||||
|
clipboard.setPrimaryClip(clip);
|
||||||
|
Toast.makeText(mContext, "Copy to clipboard.", Toast.LENGTH_SHORT).show();
|
||||||
|
LogUtils.d(TAG, "showPhonePopupMenu: 号码" + callLog.getPhoneNumber() + "已复制到剪贴板");
|
||||||
|
} else if (itemId == R.id.item_calllog_phonenumber_yundun_test) {
|
||||||
|
// 跳转到添加联系人页面
|
||||||
|
//if (Rules.getInstance(mContext).isAllowed(callLog.getPhoneNumber(), false)) {
|
||||||
|
if (Rules.getInstance(mContext).isAllowed(callLog.getPhoneNumber(), true)) {
|
||||||
|
ToastUtils.show("(✔)" + callLog.getPhoneNumber() + " Is Allowed By YunDun.");
|
||||||
|
} else {
|
||||||
|
ToastUtils.show("(✘)YunDun Defense The Phone " + callLog.getPhoneNumber() + "");
|
||||||
|
}
|
||||||
|
} else if (itemId == R.id.item_calllog_phonenumber_add_contact) {
|
||||||
|
// 跳转到添加联系人页面
|
||||||
|
ContactUtils.jumpToAddContact(mContext, callLog.getPhoneNumber());
|
||||||
|
LogUtils.d(TAG, "showPhonePopupMenu: 跳转添加联系人页面,号码=" + callLog.getPhoneNumber());
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
menu.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化滑动拨号SeekBar
|
||||||
|
*/
|
||||||
|
private void initDialSeekBar(AOHPCTCSeekBar seekBar, final CallLogModel callLog) {
|
||||||
|
LogUtils.d(TAG, "initDialSeekBar: 初始化滑动拨号控件");
|
||||||
|
seekBar.setThumb(seekBar.getContext().getDrawable(R.drawable.ic_call));
|
||||||
|
seekBar.setBlurRightDP(80);
|
||||||
|
seekBar.setThumbOffset(0);
|
||||||
|
|
||||||
|
seekBar.setOnOHPCListener(new AOHPCTCSeekBar.OnOHPCListener() {
|
||||||
|
@Override
|
||||||
|
public void onOHPCommit() {
|
||||||
|
String phoneNumber = callLog.getPhoneNumber().replaceAll("\\s", "");
|
||||||
|
LogUtils.d(TAG, "initDialSeekBar: 滑动拨号触发,号码=" + phoneNumber);
|
||||||
|
ToastUtils.show(phoneNumber);
|
||||||
|
|
||||||
|
Intent intent = new Intent(Intent.ACTION_CALL);
|
||||||
|
intent.setData(android.net.Uri.parse("tel:" + phoneNumber));
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
mContext.startActivity(intent);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== ViewHolder 内部类 ======================
|
||||||
|
public class CallLogViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
TextView phoneNumber;
|
||||||
|
TextView callStatus;
|
||||||
|
TextView callDate;
|
||||||
|
AOHPCTCSeekBar dialAOHPCTCSeekBar;
|
||||||
|
|
||||||
|
public CallLogViewHolder(@NonNull View itemView) {
|
||||||
|
super(itemView);
|
||||||
|
// Java7 适配:添加强制类型转换
|
||||||
|
phoneNumber = (TextView) itemView.findViewById(R.id.phone_number);
|
||||||
|
callStatus = (TextView) itemView.findViewById(R.id.call_status);
|
||||||
|
callDate = (TextView) itemView.findViewById(R.id.call_date);
|
||||||
|
dialAOHPCTCSeekBar = (AOHPCTCSeekBar) itemView.findViewById(R.id.aohpctcseekbar_dial);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,157 @@
|
|||||||
|
package cc.winboll.studio.contacts.adapters;
|
||||||
|
|
||||||
|
import android.content.ClipData;
|
||||||
|
import android.content.ClipboardManager;
|
||||||
|
import android.content.Context;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.MenuItem;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.LinearLayout;
|
||||||
|
import android.widget.PopupMenu;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.contacts.model.ContactModel;
|
||||||
|
import cc.winboll.studio.contacts.utils.ContactUtils;
|
||||||
|
import cc.winboll.studio.libaes.views.AOHPCTCSeekBar;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/02/26 13:35:44
|
||||||
|
* @Describe 联系人列表适配器
|
||||||
|
*/
|
||||||
|
public class ContactAdapter extends RecyclerView.Adapter<ContactAdapter.ContactViewHolder> {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "ContactAdapter";
|
||||||
|
// 移除未使用的 REQUEST_CALL_PHONE 常量,精简冗余代码
|
||||||
|
|
||||||
|
// ====================== 成员变量区 ======================
|
||||||
|
private Context mContext;
|
||||||
|
private List<ContactModel> contactList;
|
||||||
|
|
||||||
|
// ====================== 构造函数区 ======================
|
||||||
|
public ContactAdapter(Context context, List<ContactModel> contactList) {
|
||||||
|
LogUtils.d(TAG, "ContactAdapter: 初始化适配器,联系人数量=" + contactList.size());
|
||||||
|
this.mContext = context;
|
||||||
|
this.contactList = contactList;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== RecyclerView 重写方法区 ======================
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public ContactViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
LogUtils.d(TAG, "onCreateViewHolder: 创建联系人列表项ViewHolder");
|
||||||
|
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_contact, parent, false);
|
||||||
|
return new ContactViewHolder(view);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull ContactViewHolder holder, int position) {
|
||||||
|
LogUtils.d(TAG, "onBindViewHolder: 绑定联系人列表项数据,position=" + position);
|
||||||
|
final ContactModel contact = contactList.get(position);
|
||||||
|
|
||||||
|
// 绑定联系人名称与号码
|
||||||
|
holder.contactName.setText(contact.getName());
|
||||||
|
holder.contactNumber.setText(contact.getNumber());
|
||||||
|
|
||||||
|
// 长按联系人条目弹出操作菜单
|
||||||
|
holder.llPhoneNumberMain.setOnLongClickListener(new View.OnLongClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onLongClick(View v) {
|
||||||
|
showContactPopupMenu(holder.llPhoneNumberMain, contact);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 初始化滑动拨号SeekBar
|
||||||
|
initDialSeekBar(holder.dialAOHPCTCSeekBar, contact);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
// 增加空指针判断,避免空列表崩溃
|
||||||
|
return contactList == null ? 0 : contactList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 私有工具方法区 ======================
|
||||||
|
/**
|
||||||
|
* 显示联系人操作弹窗菜单
|
||||||
|
*/
|
||||||
|
private void showContactPopupMenu(View anchorView, final ContactModel contact) {
|
||||||
|
LogUtils.d(TAG, "showContactPopupMenu: 弹出联系人操作菜单");
|
||||||
|
PopupMenu menu = new PopupMenu(mContext, anchorView);
|
||||||
|
menu.getMenuInflater().inflate(R.menu.toolbar_contact_phonenumber, menu.getMenu());
|
||||||
|
|
||||||
|
menu.setOnMenuItemClickListener(new PopupMenu.OnMenuItemClickListener() {
|
||||||
|
@Override
|
||||||
|
public boolean onMenuItemClick(MenuItem menuItem) {
|
||||||
|
int itemId = menuItem.getItemId();
|
||||||
|
if (itemId == R.id.item_contact_phonenumber_copy) {
|
||||||
|
// 复制联系人号码到剪贴板
|
||||||
|
ClipboardManager clipboard = (ClipboardManager) mContext.getSystemService(Context.CLIPBOARD_SERVICE);
|
||||||
|
ClipData clip = ClipData.newPlainText("contact_phone", contact.getNumber());
|
||||||
|
clipboard.setPrimaryClip(clip);
|
||||||
|
Toast.makeText(mContext, "Copy to clipboard.", Toast.LENGTH_SHORT).show();
|
||||||
|
LogUtils.d(TAG, "showContactPopupMenu: 联系人号码" + contact.getNumber() + "已复制到剪贴板");
|
||||||
|
} else if (itemId == R.id.item_calllog_phonenumber_edit_contact) {
|
||||||
|
// 跳转到编辑联系人页面
|
||||||
|
Long contactId = ContactUtils.getContactIdByPhone(mContext, contact.getNumber());
|
||||||
|
ContactUtils.jumpToEditContact(mContext, contact.getNumber(), contactId);
|
||||||
|
LogUtils.d(TAG, "showContactPopupMenu: 跳转编辑联系人页面,号码=" + contact.getNumber() + ",ID=" + contactId);
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
});
|
||||||
|
menu.show();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 初始化滑动拨号SeekBar
|
||||||
|
*/
|
||||||
|
private void initDialSeekBar(AOHPCTCSeekBar seekBar, final ContactModel contact) {
|
||||||
|
LogUtils.d(TAG, "initDialSeekBar: 初始化滑动拨号控件");
|
||||||
|
seekBar.setThumb(seekBar.getContext().getDrawable(R.drawable.ic_call));
|
||||||
|
seekBar.setBlurRightDP(80);
|
||||||
|
seekBar.setThumbOffset(0);
|
||||||
|
|
||||||
|
seekBar.setOnOHPCListener(new AOHPCTCSeekBar.OnOHPCListener() {
|
||||||
|
@Override
|
||||||
|
public void onOHPCommit() {
|
||||||
|
String phoneNumber = contact.getNumber().replaceAll("\\s", "");
|
||||||
|
LogUtils.d(TAG, "initDialSeekBar: 滑动拨号触发,号码=" + phoneNumber);
|
||||||
|
ToastUtils.show(phoneNumber);
|
||||||
|
|
||||||
|
Intent intent = new Intent(Intent.ACTION_CALL);
|
||||||
|
intent.setData(android.net.Uri.parse("tel:" + phoneNumber));
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
mContext.startActivity(intent);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== ViewHolder 内部类 ======================
|
||||||
|
public class ContactViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
LinearLayout llPhoneNumberMain;
|
||||||
|
TextView contactName;
|
||||||
|
TextView contactNumber;
|
||||||
|
AOHPCTCSeekBar dialAOHPCTCSeekBar;
|
||||||
|
|
||||||
|
public ContactViewHolder(@NonNull View itemView) {
|
||||||
|
super(itemView);
|
||||||
|
// Java7 适配:添加强制类型转换
|
||||||
|
llPhoneNumberMain = (LinearLayout) itemView.findViewById(R.id.itemcontactLinearLayout1);
|
||||||
|
contactName = (TextView) itemView.findViewById(R.id.contact_name);
|
||||||
|
contactNumber = (TextView) itemView.findViewById(R.id.contact_number);
|
||||||
|
dialAOHPCTCSeekBar = (AOHPCTCSeekBar) itemView.findViewById(R.id.aohpctcseekbar_dial);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,257 @@
|
|||||||
|
package cc.winboll.studio.contacts.adapters;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.Button;
|
||||||
|
import android.widget.CheckBox;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import android.widget.TextView;
|
||||||
|
import android.widget.Toast;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.contacts.model.PhoneConnectRuleBean;
|
||||||
|
import cc.winboll.studio.contacts.dun.Rules;
|
||||||
|
import cc.winboll.studio.contacts.views.LeftScrollView;
|
||||||
|
import cc.winboll.studio.libaes.dialogs.YesNoAlertDialog;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/03/02 17:27:41
|
||||||
|
* @Describe 通话规则列表适配器,支持简单查看/编辑两种视图切换
|
||||||
|
*/
|
||||||
|
public class PhoneConnectRuleAdapter extends RecyclerView.Adapter<RecyclerView.ViewHolder> {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "PhoneConnectRuleAdapter";
|
||||||
|
private static final int VIEW_TYPE_SIMPLE = 0;
|
||||||
|
private static final int VIEW_TYPE_EDIT = 1;
|
||||||
|
private static final String NULL_RULE_TEXT = "[NULL]";
|
||||||
|
|
||||||
|
// ====================== 成员变量区 ======================
|
||||||
|
private Context mContext;
|
||||||
|
private List<PhoneConnectRuleBean> mRuleList;
|
||||||
|
|
||||||
|
// ====================== 构造函数区 ======================
|
||||||
|
public PhoneConnectRuleAdapter(Context context, List<PhoneConnectRuleBean> ruleList) {
|
||||||
|
LogUtils.d(TAG, "PhoneConnectRuleAdapter: 初始化适配器,规则数量=" + ruleList.size());
|
||||||
|
this.mContext = context;
|
||||||
|
this.mRuleList = ruleList;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== RecyclerView 重写方法区 ======================
|
||||||
|
@NonNull
|
||||||
|
@Override
|
||||||
|
public RecyclerView.ViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
|
||||||
|
LayoutInflater inflater = LayoutInflater.from(mContext);
|
||||||
|
if (viewType == VIEW_TYPE_SIMPLE) {
|
||||||
|
LogUtils.d(TAG, "onCreateViewHolder: 创建简单视图ViewHolder");
|
||||||
|
View view = inflater.inflate(R.layout.view_phone_connect_rule_simple, parent, false);
|
||||||
|
return new SimpleViewHolder(parent, view);
|
||||||
|
} else {
|
||||||
|
LogUtils.d(TAG, "onCreateViewHolder: 创建编辑视图ViewHolder");
|
||||||
|
View view = inflater.inflate(R.layout.view_phone_connect_rule, parent, false);
|
||||||
|
return new EditViewHolder(view);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onBindViewHolder(@NonNull RecyclerView.ViewHolder holder, final int position) {
|
||||||
|
final PhoneConnectRuleBean model = mRuleList.get(position);
|
||||||
|
LogUtils.d(TAG, "onBindViewHolder: 绑定规则数据,position=" + position + ",视图类型=" + getItemViewType(position));
|
||||||
|
|
||||||
|
if (holder instanceof SimpleViewHolder) {
|
||||||
|
bindSimpleViewHolder((SimpleViewHolder) holder, model, position);
|
||||||
|
} else if (holder instanceof EditViewHolder) {
|
||||||
|
bindEditViewHolder((EditViewHolder) holder, model, position);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemCount() {
|
||||||
|
return mRuleList == null ? 0 : mRuleList.size();
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public int getItemViewType(int position) {
|
||||||
|
return mRuleList.get(position).isSimpleView() ? VIEW_TYPE_SIMPLE : VIEW_TYPE_EDIT;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 私有视图绑定方法区 ======================
|
||||||
|
/**
|
||||||
|
* 绑定简单视图数据
|
||||||
|
*/
|
||||||
|
private void bindSimpleViewHolder(final SimpleViewHolder holder, final PhoneConnectRuleBean model, final int position) {
|
||||||
|
// 绑定规则文本,空值显示[NULL]
|
||||||
|
String ruleText = model.getRuleText().trim().isEmpty() ? NULL_RULE_TEXT : model.getRuleText().trim();
|
||||||
|
holder.tvRuleText.setText(ruleText);
|
||||||
|
// 设置复选框状态并禁用编辑
|
||||||
|
holder.checkBoxAllow.setChecked(model.isAllowConnection());
|
||||||
|
holder.checkBoxAllow.setEnabled(false);
|
||||||
|
holder.checkBoxEnable.setChecked(model.isEnable());
|
||||||
|
holder.checkBoxEnable.setEnabled(false);
|
||||||
|
|
||||||
|
// 设置左滑操作监听
|
||||||
|
holder.scrollView.setOnActionListener(new LeftScrollView.OnActionListener() {
|
||||||
|
@Override
|
||||||
|
public void onUp() {
|
||||||
|
LogUtils.d(TAG, "onUp: 规则上移,position=" + position);
|
||||||
|
moveRuleUp(position);
|
||||||
|
holder.scrollView.smoothScrollTo(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDown() {
|
||||||
|
LogUtils.d(TAG, "onDown: 规则下移,position=" + position);
|
||||||
|
moveRuleDown(position);
|
||||||
|
holder.scrollView.smoothScrollTo(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onEdit() {
|
||||||
|
LogUtils.d(TAG, "onEdit: 切换到编辑视图,position=" + position);
|
||||||
|
model.setIsSimpleView(false);
|
||||||
|
notifyItemChanged(position);
|
||||||
|
holder.scrollView.smoothScrollTo(0, 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDelete() {
|
||||||
|
LogUtils.d(TAG, "onDelete: 触发规则删除确认,position=" + position);
|
||||||
|
showDeleteConfirmDialog(holder.scrollView.getContext(), model, position);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 绑定编辑视图数据
|
||||||
|
*/
|
||||||
|
private void bindEditViewHolder(final EditViewHolder holder, final PhoneConnectRuleBean model, final int position) {
|
||||||
|
// 绑定规则文本到输入框
|
||||||
|
holder.editText.setText(model.getRuleText());
|
||||||
|
// 绑定复选框状态
|
||||||
|
holder.checkBoxAllow.setChecked(model.isAllowConnection());
|
||||||
|
holder.checkBoxEnable.setChecked(model.isEnable());
|
||||||
|
|
||||||
|
// 确认按钮点击事件
|
||||||
|
holder.buttonConfirm.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
String newRuleText = holder.editText.getText().toString().trim();
|
||||||
|
model.setRuleText(newRuleText);
|
||||||
|
model.setIsAllowConnection(holder.checkBoxAllow.isChecked());
|
||||||
|
model.setIsEnable(holder.checkBoxEnable.isChecked());
|
||||||
|
model.setIsSimpleView(true);
|
||||||
|
|
||||||
|
// 保存规则并刷新视图
|
||||||
|
Rules.getInstance(mContext).saveRules();
|
||||||
|
notifyItemChanged(position);
|
||||||
|
Toast.makeText(mContext, "保存成功", Toast.LENGTH_SHORT).show();
|
||||||
|
LogUtils.d(TAG, "bindEditViewHolder: 规则保存成功,position=" + position + ",规则内容=" + newRuleText);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 私有业务工具方法区 ======================
|
||||||
|
/**
|
||||||
|
* 规则上移
|
||||||
|
*/
|
||||||
|
private void moveRuleUp(int position) {
|
||||||
|
if (position <= 0) {
|
||||||
|
ToastUtils.show("已到顶部,无法上移");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
ArrayList<PhoneConnectRuleBean> ruleList = Rules.getInstance(mContext).getPhoneBlacRuleBeanList();
|
||||||
|
swapRulePosition(ruleList, position, position - 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 规则下移
|
||||||
|
*/
|
||||||
|
private void moveRuleDown(int position) {
|
||||||
|
ArrayList<PhoneConnectRuleBean> ruleList = Rules.getInstance(mContext).getPhoneBlacRuleBeanList();
|
||||||
|
if (position >= ruleList.size() - 1) {
|
||||||
|
ToastUtils.show("已到底部,无法下移");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
swapRulePosition(ruleList, position, position + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 交换规则位置
|
||||||
|
*/
|
||||||
|
private void swapRulePosition(ArrayList<PhoneConnectRuleBean> list, int fromPos, int toPos) {
|
||||||
|
PhoneConnectRuleBean temp = list.get(fromPos);
|
||||||
|
list.set(fromPos, list.get(toPos));
|
||||||
|
list.set(toPos, temp);
|
||||||
|
Rules.getInstance(mContext).saveRules();
|
||||||
|
notifyDataSetChanged();
|
||||||
|
LogUtils.d(TAG, "swapRulePosition: 规则位置交换完成,from=" + fromPos + ",to=" + toPos);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 显示删除确认弹窗
|
||||||
|
*/
|
||||||
|
private void showDeleteConfirmDialog(Context dialogContext, final PhoneConnectRuleBean model, final int position) {
|
||||||
|
YesNoAlertDialog.show(dialogContext, "删除确认", "是否删除该通话规则?", new YesNoAlertDialog.OnDialogResultListener() {
|
||||||
|
@Override
|
||||||
|
public void onYes() {
|
||||||
|
ArrayList<PhoneConnectRuleBean> ruleList = Rules.getInstance(mContext).getPhoneBlacRuleBeanList();
|
||||||
|
ruleList.remove(position);
|
||||||
|
Rules.getInstance(mContext).saveRules();
|
||||||
|
notifyDataSetChanged();
|
||||||
|
LogUtils.d(TAG, "showDeleteConfirmDialog: 规则删除成功,position=" + position);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onNo() {
|
||||||
|
LogUtils.d(TAG, "showDeleteConfirmDialog: 用户取消删除规则,position=" + position);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== ViewHolder 内部类区 ======================
|
||||||
|
static class SimpleViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
LeftScrollView scrollView;
|
||||||
|
TextView tvRuleText;
|
||||||
|
CheckBox checkBoxAllow;
|
||||||
|
CheckBox checkBoxEnable;
|
||||||
|
|
||||||
|
public SimpleViewHolder(@NonNull ViewGroup parent, @NonNull View itemView) {
|
||||||
|
super(itemView);
|
||||||
|
scrollView = (LeftScrollView) itemView.findViewById(R.id.scrollView);
|
||||||
|
// 初始化简单视图内容布局
|
||||||
|
LayoutInflater inflater = LayoutInflater.from(itemView.getContext());
|
||||||
|
View viewContent = inflater.inflate(R.layout.view_phone_connect_rule_simple_content, parent, false);
|
||||||
|
tvRuleText = (TextView) viewContent.findViewById(R.id.ruletext_tv);
|
||||||
|
checkBoxAllow = (CheckBox) viewContent.findViewById(R.id.checkbox_allow);
|
||||||
|
checkBoxEnable = (CheckBox) viewContent.findViewById(R.id.checkbox_enable);
|
||||||
|
// 设置内容宽度并添加到滚动视图
|
||||||
|
scrollView.setContentWidth(parent.getWidth());
|
||||||
|
scrollView.addContentLayout(viewContent);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
static class EditViewHolder extends RecyclerView.ViewHolder {
|
||||||
|
EditText editText;
|
||||||
|
CheckBox checkBoxAllow;
|
||||||
|
CheckBox checkBoxEnable;
|
||||||
|
Button buttonConfirm;
|
||||||
|
|
||||||
|
public EditViewHolder(@NonNull View itemView) {
|
||||||
|
super(itemView);
|
||||||
|
// Java7 适配:添加强制类型转换
|
||||||
|
editText = (EditText) itemView.findViewById(R.id.edit_text);
|
||||||
|
checkBoxAllow = (CheckBox) itemView.findViewById(R.id.checkbox_allow);
|
||||||
|
checkBoxEnable = (CheckBox) itemView.findViewById(R.id.checkbox_enable);
|
||||||
|
buttonConfirm = (Button) itemView.findViewById(R.id.button_confirm);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,260 @@
|
|||||||
|
package cc.winboll.studio.contacts.bobulltoon;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen<zhangsken@qq.com>
|
||||||
|
* @Date 2025/03/02 13:47:48
|
||||||
|
* @Describe 汤姆猫管家 :使用 BoBullToon 项目,对通讯地址进行筛选判断的好朋友。
|
||||||
|
*/
|
||||||
|
import android.content.Context;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.contacts.dun.Rules;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
import java.io.File;
|
||||||
|
import java.io.FileFilter;
|
||||||
|
import java.io.FileOutputStream;
|
||||||
|
import java.io.IOException;
|
||||||
|
import java.io.InputStream;
|
||||||
|
import java.nio.file.Files;
|
||||||
|
import java.nio.file.Path;
|
||||||
|
import java.nio.file.Paths;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.zip.ZipEntry;
|
||||||
|
import java.util.zip.ZipInputStream;
|
||||||
|
import okhttp3.OkHttpClient;
|
||||||
|
import okhttp3.Request;
|
||||||
|
import okhttp3.Response;
|
||||||
|
|
||||||
|
public class TomCat {
|
||||||
|
|
||||||
|
public static final String TAG = "TomCat";
|
||||||
|
|
||||||
|
List<String> listPhoneBoBullToon = new ArrayList<String>();
|
||||||
|
String mszBoBullToon_URL;
|
||||||
|
|
||||||
|
static volatile TomCat _TomCat;
|
||||||
|
Context mContext;
|
||||||
|
TomCat(Context context) {
|
||||||
|
mContext = context;
|
||||||
|
}
|
||||||
|
|
||||||
|
public static synchronized TomCat getInstance(Context context) {
|
||||||
|
if (_TomCat == null) {
|
||||||
|
_TomCat = new TomCat(context);
|
||||||
|
}
|
||||||
|
return _TomCat;
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getDefaultBobulltoonUrl() {
|
||||||
|
return mContext.getString(R.string.default_bobulltoon_url);
|
||||||
|
}
|
||||||
|
|
||||||
|
boolean downloadAndExtractZip(String zipUrl, String destinationFolder) throws IOException {
|
||||||
|
OkHttpClient client = new OkHttpClient();
|
||||||
|
Request request = new Request.Builder()
|
||||||
|
.url(zipUrl)
|
||||||
|
.build();
|
||||||
|
|
||||||
|
try {
|
||||||
|
Response response = client.newCall(request).execute();
|
||||||
|
if (!response.isSuccessful()) {
|
||||||
|
throw new IOException("Unexpected code " + response);
|
||||||
|
}
|
||||||
|
|
||||||
|
// 下载 ZIP 文件到临时位置
|
||||||
|
File tempZipFile = File.createTempFile("temp", ".zip");
|
||||||
|
try {
|
||||||
|
InputStream inputStream = response.body().byteStream();
|
||||||
|
FileOutputStream outputStream = new FileOutputStream(tempZipFile);
|
||||||
|
byte[] buffer = new byte[1024];
|
||||||
|
int length;
|
||||||
|
while ((length = inputStream.read(buffer)) > 0) {
|
||||||
|
outputStream.write(buffer, 0, length);
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.d(TAG, e, Thread.currentThread().getStackTrace());
|
||||||
|
}
|
||||||
|
|
||||||
|
// 解压 ZIP 文件到指定文件夹
|
||||||
|
try {
|
||||||
|
ZipInputStream zipInputStream = new ZipInputStream(Files.newInputStream(tempZipFile.toPath()));
|
||||||
|
ZipEntry zipEntry;
|
||||||
|
while ((zipEntry = zipInputStream.getNextEntry()) != null) {
|
||||||
|
Path targetFilePath = Paths.get(destinationFolder, zipEntry.getName());
|
||||||
|
if (zipEntry.isDirectory()) {
|
||||||
|
Files.createDirectories(targetFilePath);
|
||||||
|
} else {
|
||||||
|
Files.createDirectories(targetFilePath.getParent());
|
||||||
|
try (FileOutputStream fos = new FileOutputStream(targetFilePath.toFile())) {
|
||||||
|
byte[] buffer = new byte[1024];
|
||||||
|
int len;
|
||||||
|
while ((len = zipInputStream.read(buffer)) > 0) {
|
||||||
|
fos.write(buffer, 0, len);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
zipInputStream.closeEntry();
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.d(TAG, e, Thread.currentThread().getStackTrace());
|
||||||
|
}
|
||||||
|
|
||||||
|
// 删除临时 ZIP 文件
|
||||||
|
tempZipFile.delete();
|
||||||
|
LogUtils.d(TAG, "已更新 BoBullToon 数据");
|
||||||
|
return true;
|
||||||
|
} catch (Exception e) {
|
||||||
|
ToastUtils.show(e.getMessage());
|
||||||
|
LogUtils.d(TAG, e, Thread.currentThread().getStackTrace());
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean downloadBoBullToon() {
|
||||||
|
String zipUrl = Rules.getInstance(mContext).getBoBullToonURL(); // 替换为实际的 ZIP 文件 URL
|
||||||
|
String destinationFolder = getWorkingFolder().getPath(); // 替换为实际的目标文件夹路径
|
||||||
|
try {
|
||||||
|
// 删除旧文件
|
||||||
|
File fOldFolder = new File(destinationFolder);
|
||||||
|
if (fOldFolder.exists()) {
|
||||||
|
deleteFolderRecursive(fOldFolder);
|
||||||
|
fOldFolder.mkdirs();
|
||||||
|
LogUtils.d(TAG, "已清空 BoBullToon 数据");
|
||||||
|
}
|
||||||
|
|
||||||
|
// 更新新文件
|
||||||
|
if (downloadAndExtractZip(zipUrl, destinationFolder)) {
|
||||||
|
LogUtils.d(TAG, "ZIP 文件下载并解压成功。");
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
} catch (IOException e) {
|
||||||
|
LogUtils.d(TAG, e, Thread.currentThread().getStackTrace());
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 递归删除文件夹及其内容的方法
|
||||||
|
public static void deleteFolderRecursive(File file) {
|
||||||
|
// 判断是否为文件夹
|
||||||
|
if (file.isDirectory()) {
|
||||||
|
// 列出文件夹中的所有文件和子文件夹
|
||||||
|
File[] files = file.listFiles();
|
||||||
|
if (files != null) {
|
||||||
|
// 遍历并递归删除每个文件和子文件夹
|
||||||
|
for (File f : files) {
|
||||||
|
deleteFolderRecursive(f);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
// 删除文件或空文件夹
|
||||||
|
file.delete();
|
||||||
|
}
|
||||||
|
|
||||||
|
File getWorkingFolder() {
|
||||||
|
return mContext.getExternalFilesDir(TAG);
|
||||||
|
}
|
||||||
|
|
||||||
|
public File getBoBullToonDataFolder() {
|
||||||
|
File fCheckRoot = getWorkingFolder();
|
||||||
|
if (fCheckRoot == null || !fCheckRoot.exists()) {
|
||||||
|
return fCheckRoot;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 递归查找符合条件的文件夹
|
||||||
|
File targetFolder = findTargetFolder(fCheckRoot);
|
||||||
|
return targetFolder != null ? targetFolder : fCheckRoot;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 递归查找同时包含LICENSE和README.md文件的文件夹
|
||||||
|
*/
|
||||||
|
private File findTargetFolder(File currentFolder) {
|
||||||
|
// 检查当前文件夹是否符合条件
|
||||||
|
if (hasRequiredFiles(currentFolder)) {
|
||||||
|
return currentFolder;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查找子文件夹(Java 7不支持方法引用,用匿名内部类过滤)
|
||||||
|
File[] subFolders = currentFolder.listFiles(new FileFilter() {
|
||||||
|
@Override
|
||||||
|
public boolean accept(File file) {
|
||||||
|
return file.isDirectory(); // 仅保留子文件夹
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
if (subFolders != null) {
|
||||||
|
for (File subFolder : subFolders) {
|
||||||
|
File result = findTargetFolder(subFolder);
|
||||||
|
if (result != null) {
|
||||||
|
return result;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 检查文件夹中是否同时存在LICENSE和README.md文件
|
||||||
|
*/
|
||||||
|
private boolean hasRequiredFiles(File folder) {
|
||||||
|
if (folder == null || !folder.isDirectory()) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检查两个文件是否同时存在且均为文件(非文件夹)
|
||||||
|
File licenseFile = new File(folder, "LICENSE");
|
||||||
|
File readmeFile = new File(folder, "README.md");
|
||||||
|
|
||||||
|
return licenseFile.exists() && licenseFile.isFile()
|
||||||
|
&& readmeFile.exists() && readmeFile.isFile();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void cleanBoBullToon() {
|
||||||
|
String destinationFolder = getWorkingFolder().getPath(); // 替换为实际的目标文件夹路径
|
||||||
|
// 删除旧文件
|
||||||
|
File fOldFolder = new File(destinationFolder);
|
||||||
|
if (fOldFolder.exists()) {
|
||||||
|
deleteFolderRecursive(fOldFolder);
|
||||||
|
fOldFolder.mkdirs();
|
||||||
|
}
|
||||||
|
|
||||||
|
ToastUtils.show("已清空 BoBullToon 数据!");
|
||||||
|
LogUtils.d(TAG, "已清空 BoBullToon 数据");
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean loadPhoneBoBullToon() {
|
||||||
|
listPhoneBoBullToon.clear();
|
||||||
|
File fBoBullToon = getBoBullToonDataFolder();
|
||||||
|
if (fBoBullToon.exists()) {
|
||||||
|
LogUtils.d(TAG, String.format("getBoBullToonDataFolder() %s", getWorkingFolder()));
|
||||||
|
for (File userFolder : fBoBullToon.listFiles()) {
|
||||||
|
if (userFolder.isDirectory()) {
|
||||||
|
for (File recordFile : userFolder.listFiles()) {
|
||||||
|
listPhoneBoBullToon.add(recordFile.getName());
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
for (int i = 0; i < listPhoneBoBullToon.size(); i++) {
|
||||||
|
LogUtils.d(TAG, String.format("listPhoneBoBullToon add : %s", listPhoneBoBullToon.get(i)));
|
||||||
|
}
|
||||||
|
return true;
|
||||||
|
} else {
|
||||||
|
LogUtils.d(TAG, "fBoBullToon not exists。");
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isPhoneBoBullToon(String phone) {
|
||||||
|
for (int i = 0; i < listPhoneBoBullToon.size(); i++) {
|
||||||
|
LogUtils.d(TAG, String.format("isPhoneBoBullToon(...) get(i) phone : %s", listPhoneBoBullToon.get(i)));
|
||||||
|
if (listPhoneBoBullToon.get(i).equals(phone)) {
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -0,0 +1,280 @@
|
|||||||
|
package cc.winboll.studio.contacts.dun;
|
||||||
|
|
||||||
|
import android.content.Context;
|
||||||
|
import cc.winboll.studio.contacts.activities.SettingsActivity;
|
||||||
|
import cc.winboll.studio.contacts.bobulltoon.TomCat;
|
||||||
|
import cc.winboll.studio.contacts.model.PhoneConnectRuleBean;
|
||||||
|
import cc.winboll.studio.contacts.model.SettingsBean;
|
||||||
|
import cc.winboll.studio.contacts.services.LimitedTimeSpecialChannelService;
|
||||||
|
import cc.winboll.studio.contacts.services.MainService;
|
||||||
|
import cc.winboll.studio.contacts.utils.ContactUtils;
|
||||||
|
import cc.winboll.studio.contacts.utils.IntUtils;
|
||||||
|
import cc.winboll.studio.contacts.utils.RegexPPiUtils;
|
||||||
|
import cc.winboll.studio.contacts.views.DunTemperatureView;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Timer;
|
||||||
|
import java.util.TimerTask;
|
||||||
|
import java.util.regex.Pattern;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/02/21 06:15:10
|
||||||
|
* @Describe 云盾防御规则(双重校验锁单例模式)
|
||||||
|
*/
|
||||||
|
public class Rules {
|
||||||
|
|
||||||
|
public static final String TAG = "Rules";
|
||||||
|
|
||||||
|
// 单例核心:volatile 保证多线程可见性,禁止指令重排
|
||||||
|
private static volatile Rules sInstance;
|
||||||
|
// 上下文需使用 ApplicationContext 避免内存泄漏
|
||||||
|
private static Context sApplicationContext;
|
||||||
|
|
||||||
|
ArrayList<PhoneConnectRuleBean> _PhoneConnectRuleModelList;
|
||||||
|
Context mContext;
|
||||||
|
SettingsBean mSettingsModel;
|
||||||
|
Timer mDunResumeTimer;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 私有化构造方法,禁止外部 new 实例
|
||||||
|
*/
|
||||||
|
private Rules(Context context) {
|
||||||
|
mContext = context.getApplicationContext();
|
||||||
|
_PhoneConnectRuleModelList = new ArrayList<PhoneConnectRuleBean>();
|
||||||
|
reload();
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 获取单例实例(双重校验锁,线程安全)
|
||||||
|
* @param context 上下文,建议传入 ApplicationContext
|
||||||
|
* @return Rules 唯一实例
|
||||||
|
*/
|
||||||
|
public static Rules getInstance(Context context) {
|
||||||
|
// 第一次校验:无锁,提高性能
|
||||||
|
if (sInstance == null) {
|
||||||
|
// 加锁:保证多线程下仅初始化一次
|
||||||
|
synchronized (Rules.class) {
|
||||||
|
// 第二次校验:防止多线程并发时重复创建
|
||||||
|
if (sInstance == null) {
|
||||||
|
sInstance = new Rules(context);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return sInstance;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void reload() {
|
||||||
|
LogUtils.d(TAG, "reload()");
|
||||||
|
loadRules();
|
||||||
|
loadDun();
|
||||||
|
setDunResumTimer();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDunResumTimer() {
|
||||||
|
if (mDunResumeTimer != null) {
|
||||||
|
mDunResumeTimer.cancel();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 盾牌恢复定时器
|
||||||
|
mDunResumeTimer = new Timer();
|
||||||
|
int ss = IntUtils.getIntInRange(mSettingsModel.getDunResumeSecondCount() * 1000, SettingsBean.MIN_INTRANGE, SettingsBean.MAX_INTRANGE);
|
||||||
|
mDunResumeTimer.schedule(new TimerTask() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
if (mSettingsModel.getDunCurrentCount() != mSettingsModel.getDunTotalCount()) {
|
||||||
|
LogUtils.d(TAG, String.format("当前防御值为%d,最大防御值为%d", mSettingsModel.getDunCurrentCount(), mSettingsModel.getDunTotalCount()));
|
||||||
|
int newDunCount = mSettingsModel.getDunCurrentCount() + mSettingsModel.getDunResumeCount();
|
||||||
|
// 设置盾值在[0,DunTotalCount]之内其他值一律重置为 DunTotalCount。
|
||||||
|
newDunCount = (newDunCount > mSettingsModel.getDunTotalCount()) ?mSettingsModel.getDunTotalCount(): newDunCount;
|
||||||
|
mSettingsModel.setDunCurrentCount(newDunCount);
|
||||||
|
LogUtils.d(TAG, String.format("设置防御值为%d", newDunCount));
|
||||||
|
saveDun();
|
||||||
|
// 一键更新所有 DunTemperatureView 实例的盾值
|
||||||
|
DunTemperatureView.updateDunValue(mSettingsModel.getDunTotalCount(), mSettingsModel.getDunCurrentCount());
|
||||||
|
|
||||||
|
SettingsActivity.notifyDunInfoUpdate();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}, 1000, ss);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void loadRules() {
|
||||||
|
_PhoneConnectRuleModelList.clear();
|
||||||
|
PhoneConnectRuleBean.loadBeanList(mContext, _PhoneConnectRuleModelList, PhoneConnectRuleBean.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void saveRules() {
|
||||||
|
LogUtils.d(TAG, String.format("saveRules()"));
|
||||||
|
PhoneConnectRuleBean.saveBeanList(mContext, _PhoneConnectRuleModelList, PhoneConnectRuleBean.class);
|
||||||
|
}
|
||||||
|
|
||||||
|
public void resetDefaultBoBullToonURL() {
|
||||||
|
mSettingsModel.setBoBullToon_URL(TomCat.getInstance(mContext).getDefaultBobulltoonUrl());
|
||||||
|
saveDun();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setBoBullToonURL(String szUrl) {
|
||||||
|
mSettingsModel.setBoBullToon_URL(szUrl);
|
||||||
|
saveDun();
|
||||||
|
}
|
||||||
|
|
||||||
|
public String getBoBullToonURL() {
|
||||||
|
return mSettingsModel.getBoBullToon_URL();
|
||||||
|
}
|
||||||
|
|
||||||
|
public void loadDun() {
|
||||||
|
mSettingsModel = SettingsBean.loadBean(mContext, SettingsBean.class);
|
||||||
|
if (mSettingsModel == null) {
|
||||||
|
mSettingsModel = new SettingsBean();
|
||||||
|
SettingsBean.saveBean(mContext, mSettingsModel);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public void saveDun() {
|
||||||
|
LogUtils.d(TAG, String.format("saveDun()"));
|
||||||
|
SettingsBean.saveBean(mContext, mSettingsModel);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isAllowed(String phoneNumber) {
|
||||||
|
return isAllowed(phoneNumber, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
public boolean isAllowed(String phoneNumber, boolean isTest) {
|
||||||
|
// 没有启用云盾,默认允许接通任何电话
|
||||||
|
if (!mSettingsModel.isEnableDun()) {
|
||||||
|
LogUtils.d(TAG, String.format("没有启用云盾,默认允许接通任何电话。isAllowed(...) return true"));
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 云盾防御体系
|
||||||
|
boolean isDefend = false; // 盾牌是否生效
|
||||||
|
boolean isConnect = true; // 防御结果是否连接
|
||||||
|
|
||||||
|
// 进行盾牌层数预计缩减计算
|
||||||
|
int nDunCurrentCount = mSettingsModel.getDunCurrentCount() - 1;
|
||||||
|
LogUtils.d(TAG, String.format("nDunCurrentCount : %d", nDunCurrentCount));
|
||||||
|
|
||||||
|
// 如果盾值小于1,则解除防御
|
||||||
|
if (!isDefend && nDunCurrentCount < 1) {
|
||||||
|
// 盾层为1以下,防御解除
|
||||||
|
LogUtils.d(TAG, "盾层为1以下,防御解除");
|
||||||
|
isDefend = true;
|
||||||
|
isConnect = true;
|
||||||
|
LogUtils.d(TAG, String.format("isDefend == %s\nisConnect == %s", isDefend, isConnect));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 正则运算预防针
|
||||||
|
if (!isDefend && !RegexPPiUtils.isPPiOK(phoneNumber)) {
|
||||||
|
LogUtils.d(TAG, "正则运算预防针生效。");
|
||||||
|
isDefend = true;
|
||||||
|
isConnect = false;
|
||||||
|
LogUtils.d(TAG, String.format("isDefend == %s\nisConnect == %s", isDefend, isConnect));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 限时特殊通道打开时返回连接
|
||||||
|
if (!isDefend && LimitedTimeSpecialChannelService.isServiceRunning()) {
|
||||||
|
LogUtils.d(TAG, String.format("PhoneNumber %s\n and Limited Time Special Channel Service Is Running.", phoneNumber));
|
||||||
|
isDefend = true;
|
||||||
|
isConnect = true;
|
||||||
|
LogUtils.d(TAG, String.format("isDefend == %s\nisConnect == %s", isDefend, isConnect));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 检验拨不通号码群
|
||||||
|
if (!isDefend && MainService.isPhoneInBoBullToon(phoneNumber)) {
|
||||||
|
LogUtils.d(TAG, String.format("PhoneNumber %s\n Is In BoBullToon", phoneNumber));
|
||||||
|
isDefend = true;
|
||||||
|
isConnect = false;
|
||||||
|
LogUtils.d(TAG, String.format("isDefend == %s\nisConnect == %s", isDefend, isConnect));
|
||||||
|
}
|
||||||
|
|
||||||
|
// 查询通讯录是否有该联系人
|
||||||
|
boolean isPhoneInContacts = ContactUtils.getInstance(mContext).isPhoneInContacts(mContext, phoneNumber);
|
||||||
|
if (!isDefend) {
|
||||||
|
if (isPhoneInContacts) {
|
||||||
|
LogUtils.d(TAG, String.format("Phone %s is in contacts.", phoneNumber));
|
||||||
|
isDefend = true;
|
||||||
|
isConnect = true;
|
||||||
|
LogUtils.d(TAG, String.format("isDefend == %s\nisConnect == %s", isDefend, isConnect));
|
||||||
|
} else {
|
||||||
|
LogUtils.d(TAG, String.format("Phone %s is not in contacts.", phoneNumber));
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 正则匹配规则名单校验
|
||||||
|
if (!isDefend) {
|
||||||
|
for (int i = 0; i < _PhoneConnectRuleModelList.size(); i++) {
|
||||||
|
if (_PhoneConnectRuleModelList.get(i).isEnable()) {
|
||||||
|
String regex = _PhoneConnectRuleModelList.get(i).getRuleText();
|
||||||
|
if (Pattern.matches(regex, phoneNumber)) {
|
||||||
|
LogUtils.d(TAG, String.format("Phone Number [%s] is matched by rule : %s", phoneNumber, _PhoneConnectRuleModelList.get(i)));
|
||||||
|
isDefend = true;
|
||||||
|
isConnect = _PhoneConnectRuleModelList.get(i).isAllowConnection();
|
||||||
|
LogUtils.d(TAG, String.format("isDefend == %s\nisConnect == %s", isDefend, isConnect));
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// 如果不是规则测试时,就执行云盾防御机能。
|
||||||
|
if (isTest == false) {
|
||||||
|
if (isConnect) {
|
||||||
|
// 如果防御结果为连接,则恢复防御盾牌最大值层数
|
||||||
|
mSettingsModel.setDunCurrentCount(mSettingsModel.getDunTotalCount());
|
||||||
|
LogUtils.d(TAG, String.format("防御结果为连接,恢复防御盾牌最大值层数 %d", mSettingsModel.getDunTotalCount()));
|
||||||
|
saveDun();
|
||||||
|
SettingsActivity.notifyDunInfoUpdate();
|
||||||
|
} else if (isDefend) {
|
||||||
|
// 如果触发了以上某个防御模块,减少防御盾牌层数
|
||||||
|
int newDunCount = nDunCurrentCount;
|
||||||
|
LogUtils.d(TAG, String.format("新的防御层数预计为 %d", newDunCount));
|
||||||
|
|
||||||
|
// 保证盾值在[1,DunTotalCount]之内其他值一律重置为 DunTotalCount。
|
||||||
|
if (newDunCount > 0 && newDunCount < mSettingsModel.getDunTotalCount()) {
|
||||||
|
mSettingsModel.setDunCurrentCount(newDunCount);
|
||||||
|
LogUtils.d(TAG, String.format("设置防御层数为 %d", newDunCount));
|
||||||
|
} else {
|
||||||
|
mSettingsModel.setDunCurrentCount(mSettingsModel.getDunTotalCount());
|
||||||
|
LogUtils.d(TAG, String.format("盾值不在[0,%d]区间,恢复防御最大值%d", mSettingsModel.getDunTotalCount(), mSettingsModel.getDunTotalCount()));
|
||||||
|
}
|
||||||
|
|
||||||
|
saveDun();
|
||||||
|
SettingsActivity.notifyDunInfoUpdate();
|
||||||
|
}
|
||||||
|
|
||||||
|
// 一键更新所有 DunTemperatureView 实例的盾值
|
||||||
|
DunTemperatureView.updateDunValue(mSettingsModel.getDunTotalCount(), mSettingsModel.getDunCurrentCount());
|
||||||
|
}
|
||||||
|
|
||||||
|
// 返回校验结果
|
||||||
|
LogUtils.d(TAG, String.format("返回校验结果 isConnect == %s", isConnect));
|
||||||
|
return isConnect;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void add(String szPhoneConnectRule, boolean isAllowConnection, boolean isEnable) {
|
||||||
|
_PhoneConnectRuleModelList.add(new PhoneConnectRuleBean(szPhoneConnectRule, isAllowConnection, isEnable));
|
||||||
|
}
|
||||||
|
|
||||||
|
public ArrayList<PhoneConnectRuleBean> getPhoneBlacRuleBeanList() {
|
||||||
|
return _PhoneConnectRuleModelList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public SettingsBean getSettingsModel() {
|
||||||
|
return mSettingsModel;
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 可选:释放单例资源(如退出应用时调用)
|
||||||
|
*/
|
||||||
|
public static void releaseInstance() {
|
||||||
|
if (sInstance != null) {
|
||||||
|
sInstance.mDunResumeTimer.cancel();
|
||||||
|
sInstance._PhoneConnectRuleModelList.clear();
|
||||||
|
sInstance.mSettingsModel = null;
|
||||||
|
sInstance.mContext = null;
|
||||||
|
sInstance = null;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,258 @@
|
|||||||
|
package cc.winboll.studio.contacts.fragments;
|
||||||
|
|
||||||
|
import android.Manifest;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
|
import android.database.Cursor;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.Looper;
|
||||||
|
import android.os.Message;
|
||||||
|
import android.provider.CallLog;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.core.app.ActivityCompat;
|
||||||
|
import androidx.fragment.app.Fragment;
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.contacts.adapters.CallLogAdapter;
|
||||||
|
import cc.winboll.studio.contacts.model.CallLogModel;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.Date;
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/02/20 12:57:00
|
||||||
|
* @Describe 通话记录区域视图(支持懒加载,仅切换到当前页才加载数据)
|
||||||
|
*/
|
||||||
|
public class CallLogFragment extends Fragment {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "CallLogFragment";
|
||||||
|
public static final int MSG_UPDATE = 1;
|
||||||
|
private static final String ARG_PAGE = "ARG_PAGE";
|
||||||
|
private static final int REQUEST_READ_CALL_LOG = 1;
|
||||||
|
|
||||||
|
// ====================== 静态成员区 ======================
|
||||||
|
static volatile CallLogFragment _CallLogFragment;
|
||||||
|
|
||||||
|
// ====================== 页面参数区 ======================
|
||||||
|
private int mPage;
|
||||||
|
|
||||||
|
// ====================== UI控件与适配器区 ======================
|
||||||
|
private RecyclerView recyclerView;
|
||||||
|
private CallLogAdapter callLogAdapter;
|
||||||
|
private List<CallLogModel> callLogList = new ArrayList<CallLogModel>();
|
||||||
|
|
||||||
|
// ====================== 业务逻辑成员区 ======================
|
||||||
|
private Handler mHandler;
|
||||||
|
// 懒加载标记:记录当前Fragment是否已初始化数据(避免重复加载)
|
||||||
|
private boolean isDataInited = false;
|
||||||
|
|
||||||
|
// ====================== 单例与实例化函数区 ======================
|
||||||
|
CallLogFragment() {
|
||||||
|
super();
|
||||||
|
}
|
||||||
|
|
||||||
|
public static CallLogFragment newInstance(int page) {
|
||||||
|
LogUtils.d(TAG, "newInstance: 创建通话记录Fragment实例,页码=" + page);
|
||||||
|
Bundle args = new Bundle();
|
||||||
|
args.putInt(ARG_PAGE, page);
|
||||||
|
CallLogFragment fragment = new CallLogFragment();
|
||||||
|
fragment.setArguments(args);
|
||||||
|
_CallLogFragment = fragment;
|
||||||
|
return fragment;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 生命周期函数区 ======================
|
||||||
|
@Override
|
||||||
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onCreate: Fragment创建开始");
|
||||||
|
if (getArguments() != null) {
|
||||||
|
mPage = getArguments().getInt(ARG_PAGE);
|
||||||
|
LogUtils.d(TAG, "onCreate: 读取页面参数,mPage=" + mPage);
|
||||||
|
}
|
||||||
|
// Java7 兼容:移除Lambda,使用匿名内部类初始化Handler
|
||||||
|
mHandler = new Handler(Looper.getMainLooper()) {
|
||||||
|
@Override
|
||||||
|
public void handleMessage(Message msg) {
|
||||||
|
if (msg.what == MSG_UPDATE) {
|
||||||
|
LogUtils.d(TAG, "handleMessage: 收到更新消息,开始读取通话记录");
|
||||||
|
readCallLog();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
};
|
||||||
|
LogUtils.d(TAG, "onCreate: Fragment创建完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
@Override
|
||||||
|
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
||||||
|
LogUtils.d(TAG, "onCreateView: 加载Fragment布局");
|
||||||
|
return inflater.inflate(R.layout.fragment_call_log, container, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
||||||
|
super.onViewCreated(view, savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onViewCreated: 视图创建完成,仅初始化控件(不加载数据)");
|
||||||
|
// 初始化RecyclerView(仅绑定控件、设置布局管理器,不设置数据/发起请求)
|
||||||
|
recyclerView = (RecyclerView) view.findViewById(R.id.recyclerView);
|
||||||
|
recyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
|
||||||
|
// 初始化适配器(传入空列表,后续懒加载时更新数据)
|
||||||
|
callLogAdapter = new CallLogAdapter(getContext(), callLogList);
|
||||||
|
recyclerView.setAdapter(callLogAdapter);
|
||||||
|
LogUtils.d(TAG, "onViewCreated: RecyclerView控件初始化完成(未加载数据)");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
LogUtils.d(TAG, "onResume: Fragment进入前台");
|
||||||
|
// 已初始化过数据 → 仅刷新(避免重复初始化,优化性能)
|
||||||
|
if (isDataInited && callLogAdapter != null) {
|
||||||
|
LogUtils.d(TAG, "onResume: 数据已初始化,仅刷新列表");
|
||||||
|
callLogAdapter.relaodContacts();
|
||||||
|
readCallLog(); // 刷新最新通话记录
|
||||||
|
LogUtils.d(TAG, "onResume: 通话记录数据刷新完成");
|
||||||
|
}
|
||||||
|
// 未初始化 → 不操作(等待MainActivity调用initData触发初始化)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "onDestroy: Fragment开始销毁");
|
||||||
|
if (mHandler != null) {
|
||||||
|
mHandler.removeCallbacksAndMessages(null);
|
||||||
|
LogUtils.d(TAG, "onDestroy: Handler消息已清空");
|
||||||
|
}
|
||||||
|
// 释放资源,避免内存泄漏
|
||||||
|
if (callLogList != null) {
|
||||||
|
callLogList.clear();
|
||||||
|
callLogList = null;
|
||||||
|
}
|
||||||
|
callLogAdapter = null;
|
||||||
|
recyclerView = null;
|
||||||
|
_CallLogFragment = null;
|
||||||
|
isDataInited = false;
|
||||||
|
LogUtils.d(TAG, "onDestroy: Fragment销毁完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 权限回调函数区 ======================
|
||||||
|
@Override
|
||||||
|
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
|
||||||
|
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
|
||||||
|
LogUtils.d(TAG, "onRequestPermissionsResult: 权限请求回调,requestCode=" + requestCode);
|
||||||
|
if (requestCode == REQUEST_READ_CALL_LOG) {
|
||||||
|
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
LogUtils.d(TAG, "onRequestPermissionsResult: 通话记录权限授予成功,开始加载数据");
|
||||||
|
mHandler.sendEmptyMessage(MSG_UPDATE);
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "onRequestPermissionsResult: 通话记录权限被拒绝,无法加载数据");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 懒加载核心方法(供MainActivity调用) ======================
|
||||||
|
public void initData() {
|
||||||
|
// 避免重复初始化(双重防护:标记+判断)
|
||||||
|
if (isDataInited || getContext() == null) {
|
||||||
|
LogUtils.d(TAG, "initData: 数据已初始化/上下文为空,跳过");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "initData: 开始懒加载初始化通话记录数据");
|
||||||
|
// 权限检查与数据加载(原onViewCreated中的核心逻辑迁移至此)
|
||||||
|
if (ActivityCompat.checkSelfPermission(requireContext(), Manifest.permission.READ_CALL_LOG) != PackageManager.PERMISSION_GRANTED) {
|
||||||
|
LogUtils.w(TAG, "initData: 读取通话记录权限未授予,发起权限申请");
|
||||||
|
ActivityCompat.requestPermissions(requireActivity(), new String[]{Manifest.permission.READ_CALL_LOG}, REQUEST_READ_CALL_LOG);
|
||||||
|
} else {
|
||||||
|
LogUtils.d(TAG, "initData: 权限已授予,发送更新消息加载数据");
|
||||||
|
mHandler.sendEmptyMessage(MSG_UPDATE);
|
||||||
|
}
|
||||||
|
// 标记为已初始化(后续仅刷新,不重复初始化)
|
||||||
|
isDataInited = true;
|
||||||
|
LogUtils.d(TAG, "initData: 懒加载初始化流程完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 业务核心函数区 ======================
|
||||||
|
private void readCallLog() {
|
||||||
|
LogUtils.d(TAG, "readCallLog: 开始读取系统通话记录");
|
||||||
|
// 避免空指针(懒加载场景下,控件可能未初始化完成)
|
||||||
|
if (callLogList == null || callLogAdapter == null || getContext() == null) {
|
||||||
|
LogUtils.w(TAG, "readCallLog: 控件/列表为空,跳过读取");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
callLogList.clear();
|
||||||
|
Cursor cursor = null;
|
||||||
|
try {
|
||||||
|
cursor = requireContext().getContentResolver().query(
|
||||||
|
CallLog.Calls.CONTENT_URI,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
CallLog.Calls.DATE + " DESC"
|
||||||
|
);
|
||||||
|
if (cursor != null) {
|
||||||
|
LogUtils.d(TAG, "readCallLog: 成功获取通话记录游标,数据条数=" + cursor.getCount());
|
||||||
|
while (cursor.moveToNext()) {
|
||||||
|
String phoneNumber = cursor.getString(cursor.getColumnIndex(CallLog.Calls.NUMBER));
|
||||||
|
int callType = cursor.getInt(cursor.getColumnIndex(CallLog.Calls.TYPE));
|
||||||
|
long callDateLong = cursor.getLong(cursor.getColumnIndex(CallLog.Calls.DATE));
|
||||||
|
Date callDate = new Date(callDateLong);
|
||||||
|
String callStatus = getCallStatus(callType);
|
||||||
|
|
||||||
|
callLogList.add(new CallLogModel(phoneNumber, callStatus, callDate));
|
||||||
|
}
|
||||||
|
callLogAdapter.notifyDataSetChanged();
|
||||||
|
LogUtils.d(TAG, "readCallLog: 通话记录数据解析完成,共" + callLogList.size() + "条");
|
||||||
|
} else {
|
||||||
|
LogUtils.w(TAG, "readCallLog: 通话记录游标为空");
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.e(TAG, "readCallLog: 读取通话记录异常", e);
|
||||||
|
} finally {
|
||||||
|
if (cursor != null) {
|
||||||
|
cursor.close();
|
||||||
|
LogUtils.d(TAG, "readCallLog: 游标已关闭");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private String getCallStatus(int callType) {
|
||||||
|
switch (callType) {
|
||||||
|
case CallLog.Calls.OUTGOING_TYPE:
|
||||||
|
return "Outgoing";
|
||||||
|
case CallLog.Calls.INCOMING_TYPE:
|
||||||
|
return "Incoming";
|
||||||
|
case CallLog.Calls.MISSED_TYPE:
|
||||||
|
return "Missed";
|
||||||
|
default:
|
||||||
|
return "Unknown";
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 外部调用函数区 ======================
|
||||||
|
public void triggerUpdate() {
|
||||||
|
LogUtils.d(TAG, "triggerUpdate: 外部触发通话记录更新");
|
||||||
|
if (isDataInited) { // 已初始化才触发更新(避免未加载时调用)
|
||||||
|
mHandler.sendEmptyMessage(MSG_UPDATE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
public static void updateCallLogFragment() {
|
||||||
|
if (_CallLogFragment != null) {
|
||||||
|
LogUtils.d(TAG, "updateCallLogFragment: 静态方法触发Fragment更新");
|
||||||
|
_CallLogFragment.triggerUpdate();
|
||||||
|
} else {
|
||||||
|
LogUtils.w(TAG, "updateCallLogFragment: Fragment实例为空,无法更新");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
@@ -0,0 +1,401 @@
|
|||||||
|
package cc.winboll.studio.contacts.fragments;
|
||||||
|
|
||||||
|
import android.Manifest;
|
||||||
|
import android.content.Intent;
|
||||||
|
import android.content.pm.PackageManager;
|
||||||
|
import android.database.Cursor;
|
||||||
|
import android.os.Bundle;
|
||||||
|
import android.os.Handler;
|
||||||
|
import android.os.Looper;
|
||||||
|
import android.provider.ContactsContract;
|
||||||
|
import android.text.Editable;
|
||||||
|
import android.text.TextWatcher;
|
||||||
|
import android.view.LayoutInflater;
|
||||||
|
import android.view.View;
|
||||||
|
import android.view.ViewGroup;
|
||||||
|
import android.widget.Button;
|
||||||
|
import android.widget.EditText;
|
||||||
|
import androidx.annotation.NonNull;
|
||||||
|
import androidx.annotation.Nullable;
|
||||||
|
import androidx.core.app.ActivityCompat;
|
||||||
|
import androidx.fragment.app.Fragment;
|
||||||
|
import androidx.recyclerview.widget.LinearLayoutManager;
|
||||||
|
import androidx.recyclerview.widget.RecyclerView;
|
||||||
|
import cc.winboll.studio.contacts.R;
|
||||||
|
import cc.winboll.studio.contacts.adapters.ContactAdapter;
|
||||||
|
import cc.winboll.studio.contacts.model.ContactModel;
|
||||||
|
import cc.winboll.studio.libappbase.LogUtils;
|
||||||
|
import cc.winboll.studio.libappbase.ToastUtils;
|
||||||
|
import java.util.ArrayList;
|
||||||
|
import java.util.List;
|
||||||
|
import java.util.concurrent.ExecutorService;
|
||||||
|
import java.util.concurrent.Executors;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @Author ZhanGSKen&豆包大模型<zhangsken@qq.com>
|
||||||
|
* @Date 2025/08/30 14:32
|
||||||
|
* @Describe 联系人区域视图(支持懒加载,仅切换到当前页才加载数据)
|
||||||
|
*/
|
||||||
|
public class ContactsFragment extends Fragment {
|
||||||
|
|
||||||
|
// ====================== 常量定义区 ======================
|
||||||
|
public static final String TAG = "ContactsFragment";
|
||||||
|
private static final String ARG_PAGE = "ARG_PAGE";
|
||||||
|
private static final int REQUEST_READ_CONTACTS = 1;
|
||||||
|
private static final long DEBOUNCE_DELAY = 300; // 搜索防抖延迟
|
||||||
|
|
||||||
|
// ====================== 静态缓存区 ======================
|
||||||
|
// 全局复用联系人数据,减少重复查询
|
||||||
|
private static List<ContactModel> sCachedOriginalList = new ArrayList<ContactModel>();
|
||||||
|
private static List<ContactModel> sCachedFilteredList = new ArrayList<ContactModel>();
|
||||||
|
|
||||||
|
// ====================== 页面参数区 ======================
|
||||||
|
private int mPage;
|
||||||
|
private boolean isViewInitialized = false; // 视图初始化标记(控件绑定完成)
|
||||||
|
private boolean isDataLoaded = false; // 数据加载标记(数据+功能初始化完成)
|
||||||
|
private boolean isLazyInitCompleted = false; // 懒加载总标记(供MainActivity判断)
|
||||||
|
|
||||||
|
// ====================== UI控件区 ======================
|
||||||
|
private RecyclerView recyclerView;
|
||||||
|
private ContactAdapter contactAdapter;
|
||||||
|
private EditText searchEditText;
|
||||||
|
private Button btnDial;
|
||||||
|
|
||||||
|
// ====================== 数据容器区 ======================
|
||||||
|
private List<ContactModel> contactList = new ArrayList<ContactModel>();
|
||||||
|
private List<ContactModel> originalContactList = new ArrayList<ContactModel>();
|
||||||
|
|
||||||
|
// ====================== 异步工具区 ======================
|
||||||
|
private final ExecutorService executor = Executors.newSingleThreadExecutor();
|
||||||
|
private final Handler mainHandler = new Handler(Looper.getMainLooper());
|
||||||
|
|
||||||
|
// ====================== 实例化函数区 ======================
|
||||||
|
public static ContactsFragment newInstance(int page) {
|
||||||
|
LogUtils.d(TAG, "newInstance: 创建联系人Fragment实例,页码=" + page);
|
||||||
|
Bundle args = new Bundle();
|
||||||
|
args.putInt(ARG_PAGE, page);
|
||||||
|
ContactsFragment fragment = new ContactsFragment();
|
||||||
|
fragment.setArguments(args);
|
||||||
|
return fragment;
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 生命周期函数区 ======================
|
||||||
|
@Override
|
||||||
|
public void onCreate(Bundle savedInstanceState) {
|
||||||
|
super.onCreate(savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onCreate: Fragment创建开始");
|
||||||
|
if (getArguments() != null) {
|
||||||
|
mPage = getArguments().getInt(ARG_PAGE);
|
||||||
|
LogUtils.d(TAG, "onCreate: 读取页面参数,mPage=" + mPage);
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "onCreate: Fragment创建完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Nullable
|
||||||
|
@Override
|
||||||
|
public View onCreateView(@NonNull LayoutInflater inflater, @Nullable ViewGroup container, @Nullable Bundle savedInstanceState) {
|
||||||
|
LogUtils.d(TAG, "onCreateView: 加载Fragment布局");
|
||||||
|
return inflater.inflate(R.layout.fragment_contacts, container, false);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onViewCreated(@NonNull View view, @Nullable Bundle savedInstanceState) {
|
||||||
|
super.onViewCreated(view, savedInstanceState);
|
||||||
|
LogUtils.d(TAG, "onViewCreated: 开始初始化UI控件(仅绑定,不加载数据/功能)");
|
||||||
|
// 初始化RecyclerView(仅绑定控件、设适配器,隐藏列表)
|
||||||
|
recyclerView = (RecyclerView) view.findViewById(R.id.contacts_recycler_view);
|
||||||
|
recyclerView.setLayoutManager(new LinearLayoutManager(getContext()));
|
||||||
|
contactAdapter = new ContactAdapter(getActivity(), contactList);
|
||||||
|
recyclerView.setAdapter(contactAdapter);
|
||||||
|
recyclerView.setVisibility(View.GONE);
|
||||||
|
|
||||||
|
// 绑定搜索框和拨号按钮(仅赋值,不显示、不绑定事件)
|
||||||
|
searchEditText = (EditText) view.findViewById(R.id.search_edit_text);
|
||||||
|
btnDial = (Button) view.findViewById(R.id.btn_dial);
|
||||||
|
searchEditText.setVisibility(View.GONE);
|
||||||
|
btnDial.setVisibility(View.GONE);
|
||||||
|
|
||||||
|
// 标记视图控件绑定完成
|
||||||
|
isViewInitialized = true;
|
||||||
|
LogUtils.d(TAG, "onViewCreated: UI控件初始化完成(未加载数据/功能)");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onResume() {
|
||||||
|
super.onResume();
|
||||||
|
LogUtils.d(TAG, "onResume: Fragment进入前台");
|
||||||
|
// 已完成懒加载 → 仅恢复缓存数据(切回页面时刷新)
|
||||||
|
if (isLazyInitCompleted && isDataLoaded) {
|
||||||
|
LogUtils.d(TAG, "onResume: 懒加载已完成,恢复缓存数据");
|
||||||
|
contactList.clear();
|
||||||
|
contactList.addAll(sCachedFilteredList);
|
||||||
|
contactAdapter.notifyDataSetChanged();
|
||||||
|
recyclerView.setVisibility(View.VISIBLE);
|
||||||
|
}
|
||||||
|
// 未完成懒加载 → 不操作(等待MainActivity调用initData触发)
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onDestroy() {
|
||||||
|
super.onDestroy();
|
||||||
|
LogUtils.d(TAG, "onDestroy: Fragment开始销毁");
|
||||||
|
executor.shutdown(); // 关闭线程池
|
||||||
|
mainHandler.removeCallbacksAndMessages(null); // 清空Handler任务
|
||||||
|
// 释放本地数据引用(保留静态缓存,全局复用)
|
||||||
|
if (contactList != null) {
|
||||||
|
contactList.clear();
|
||||||
|
contactList = null;
|
||||||
|
}
|
||||||
|
if (originalContactList != null) {
|
||||||
|
originalContactList.clear();
|
||||||
|
originalContactList = null;
|
||||||
|
}
|
||||||
|
// 重置标记
|
||||||
|
isViewInitialized = false;
|
||||||
|
isDataLoaded = false;
|
||||||
|
isLazyInitCompleted = false;
|
||||||
|
LogUtils.d(TAG, "onDestroy: 异步工具+本地资源已释放");
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onHiddenChanged(boolean hidden) {
|
||||||
|
super.onHiddenChanged(hidden);
|
||||||
|
LogUtils.d(TAG, "onHiddenChanged: Fragment隐藏状态变更,hidden=" + hidden);
|
||||||
|
// 已完成懒加载+显示状态 → 恢复缓存数据(兼容Tab切换场景)
|
||||||
|
if (!hidden && isLazyInitCompleted && isDataLoaded) {
|
||||||
|
contactList.clear();
|
||||||
|
contactList.addAll(sCachedFilteredList);
|
||||||
|
contactAdapter.notifyDataSetChanged();
|
||||||
|
recyclerView.setVisibility(View.VISIBLE);
|
||||||
|
LogUtils.d(TAG, "onHiddenChanged: 恢复缓存数据,列表已显示");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 权限相关函数区 ======================
|
||||||
|
private void checkContactPermission() {
|
||||||
|
LogUtils.d(TAG, "checkContactPermission: 检查联系人读取权限");
|
||||||
|
if (ActivityCompat.checkSelfPermission(requireContext(), Manifest.permission.READ_CONTACTS) != PackageManager.PERMISSION_GRANTED) {
|
||||||
|
LogUtils.w(TAG, "checkContactPermission: 权限未授予,发起申请");
|
||||||
|
ActivityCompat.requestPermissions(requireActivity(), new String[]{Manifest.permission.READ_CONTACTS}, REQUEST_READ_CONTACTS);
|
||||||
|
} else {
|
||||||
|
LogUtils.d(TAG, "checkContactPermission: 权限已授予,开始加载数据");
|
||||||
|
loadContacts();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onRequestPermissionsResult(int requestCode, @NonNull String[] permissions, @NonNull int[] grantResults) {
|
||||||
|
super.onRequestPermissionsResult(requestCode, permissions, grantResults);
|
||||||
|
LogUtils.d(TAG, "onRequestPermissionsResult: 权限回调触发,requestCode=" + requestCode);
|
||||||
|
if (requestCode == REQUEST_READ_CONTACTS) {
|
||||||
|
if (grantResults.length > 0 && grantResults[0] == PackageManager.PERMISSION_GRANTED) {
|
||||||
|
LogUtils.d(TAG, "onRequestPermissionsResult: 联系人权限授予成功");
|
||||||
|
loadContacts();
|
||||||
|
} else {
|
||||||
|
LogUtils.e(TAG, "onRequestPermissionsResult: 联系人权限被拒绝");
|
||||||
|
ToastUtils.show("请授予联系人权限以查看联系人列表");
|
||||||
|
recyclerView.setVisibility(View.VISIBLE);
|
||||||
|
// 权限拒绝也标记懒加载完成(避免重复触发)
|
||||||
|
isLazyInitCompleted = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 懒加载核心方法(供MainActivity调用) ======================
|
||||||
|
public void initData() {
|
||||||
|
// 双重防护:避免重复初始化(标记+视图就绪判断)
|
||||||
|
if (isLazyInitCompleted || !isViewInitialized || getContext() == null) {
|
||||||
|
LogUtils.d(TAG, "initData: 懒加载已完成/视图未就绪,跳过");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "initData: 开始懒加载初始化(功能+数据)");
|
||||||
|
// 1. 初始化搜索、拨号功能(原onResume首次进入逻辑迁移至此)
|
||||||
|
initSearchAndDial();
|
||||||
|
// 2. 检查权限+加载数据(原onResume首次进入逻辑迁移至此)
|
||||||
|
checkContactPermission();
|
||||||
|
// 标记懒加载总流程完成(无论权限是否授予,仅执行一次)
|
||||||
|
isLazyInitCompleted = true;
|
||||||
|
LogUtils.d(TAG, "initData: 懒加载初始化流程启动完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== UI功能初始化区 ======================
|
||||||
|
private void initSearchAndDial() {
|
||||||
|
LogUtils.d(TAG, "initSearchAndDial: 初始化搜索和拨号功能");
|
||||||
|
// 显示控件
|
||||||
|
searchEditText.setVisibility(View.VISIBLE);
|
||||||
|
btnDial.setVisibility(View.VISIBLE);
|
||||||
|
|
||||||
|
// 搜索防抖监听
|
||||||
|
searchEditText.addTextChangedListener(new DebounceTextWatcher(DEBOUNCE_DELAY) {
|
||||||
|
@Override
|
||||||
|
public void onDebounceTextChanged(String query) {
|
||||||
|
filterContacts(query);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
|
||||||
|
// 拨号按钮点击事件
|
||||||
|
btnDial.setOnClickListener(new View.OnClickListener() {
|
||||||
|
@Override
|
||||||
|
public void onClick(View v) {
|
||||||
|
String phoneNumber = searchEditText.getText().toString().replaceAll("\\s", "");
|
||||||
|
if (phoneNumber.isEmpty()) {
|
||||||
|
ToastUtils.show("请输入号码");
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
LogUtils.d(TAG, "initSearchAndDial: 发起拨号,号码=" + phoneNumber);
|
||||||
|
Intent intent = new Intent(Intent.ACTION_CALL);
|
||||||
|
intent.setData(android.net.Uri.parse("tel:" + phoneNumber));
|
||||||
|
intent.addFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
|
||||||
|
startActivity(intent);
|
||||||
|
}
|
||||||
|
});
|
||||||
|
LogUtils.d(TAG, "initSearchAndDial: 功能初始化完成");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 数据加载与处理区 ======================
|
||||||
|
private void loadContacts() {
|
||||||
|
// 优先使用缓存数据(保留原有缓存逻辑,提升性能)
|
||||||
|
if (!sCachedOriginalList.isEmpty() && !sCachedFilteredList.isEmpty()) {
|
||||||
|
LogUtils.d(TAG, "loadContacts: 存在缓存数据,直接复用");
|
||||||
|
originalContactList.clear();
|
||||||
|
originalContactList.addAll(sCachedOriginalList);
|
||||||
|
contactList.clear();
|
||||||
|
contactList.addAll(sCachedFilteredList);
|
||||||
|
contactAdapter.notifyDataSetChanged();
|
||||||
|
recyclerView.setVisibility(View.VISIBLE);
|
||||||
|
isDataLoaded = true;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
// 无缓存时异步加载(保留原有异步逻辑,避免主线程阻塞)
|
||||||
|
if (!isDataLoaded) {
|
||||||
|
LogUtils.d(TAG, "loadContacts: 无缓存,异步读取联系人数据");
|
||||||
|
recyclerView.setVisibility(View.GONE);
|
||||||
|
executor.execute(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
final List<ContactModel> tempList = readContactsInBackground();
|
||||||
|
// 主线程更新UI和缓存
|
||||||
|
mainHandler.post(new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
sCachedOriginalList.clear();
|
||||||
|
sCachedOriginalList.addAll(tempList);
|
||||||
|
sCachedFilteredList.clear();
|
||||||
|
sCachedFilteredList.addAll(tempList);
|
||||||
|
|
||||||
|
originalContactList.clear();
|
||||||
|
originalContactList.addAll(sCachedOriginalList);
|
||||||
|
contactList.clear();
|
||||||
|
contactList.addAll(sCachedFilteredList);
|
||||||
|
|
||||||
|
contactAdapter.notifyDataSetChanged();
|
||||||
|
recyclerView.setVisibility(View.VISIBLE);
|
||||||
|
isDataLoaded = true;
|
||||||
|
|
||||||
|
LogUtils.d(TAG, "loadContacts: 联系人数据加载完成,共" + contactList.size() + "条");
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
});
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
private List<ContactModel> readContactsInBackground() {
|
||||||
|
LogUtils.d(TAG, "readContactsInBackground: 子线程读取联系人");
|
||||||
|
List<ContactModel> tempList = new ArrayList<ContactModel>();
|
||||||
|
Cursor cursor = null;
|
||||||
|
try {
|
||||||
|
cursor = requireContext().getContentResolver().query(
|
||||||
|
ContactsContract.CommonDataKinds.Phone.CONTENT_URI,
|
||||||
|
new String[]{
|
||||||
|
ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME,
|
||||||
|
ContactsContract.CommonDataKinds.Phone.NUMBER
|
||||||
|
},
|
||||||
|
null,
|
||||||
|
null,
|
||||||
|
ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME + " ASC"
|
||||||
|
);
|
||||||
|
|
||||||
|
if (cursor != null && cursor.moveToFirst()) {
|
||||||
|
int nameIndex = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.DISPLAY_NAME);
|
||||||
|
int numberIndex = cursor.getColumnIndex(ContactsContract.CommonDataKinds.Phone.NUMBER);
|
||||||
|
do {
|
||||||
|
String name = cursor.getString(nameIndex);
|
||||||
|
String number = cursor.getString(numberIndex).replaceAll("\\s", "");
|
||||||
|
tempList.add(new ContactModel(name, number));
|
||||||
|
} while (cursor.moveToNext());
|
||||||
|
LogUtils.d(TAG, "readContactsInBackground: 成功读取" + tempList.size() + "条联系人数据");
|
||||||
|
} else {
|
||||||
|
LogUtils.w(TAG, "readContactsInBackground: 未读取到联系人数据");
|
||||||
|
}
|
||||||
|
} catch (Exception e) {
|
||||||
|
LogUtils.e(TAG, "readContactsInBackground: 读取联系人异常", e);
|
||||||
|
} finally {
|
||||||
|
if (cursor != null) {
|
||||||
|
cursor.close();
|
||||||
|
LogUtils.d(TAG, "readContactsInBackground: 游标已关闭");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return tempList;
|
||||||
|
}
|
||||||
|
|
||||||
|
private void filterContacts(String query) {
|
||||||
|
LogUtils.d(TAG, "filterContacts: 搜索过滤,关键词=" + query);
|
||||||
|
contactList.clear();
|
||||||
|
sCachedFilteredList.clear();
|
||||||
|
if (query.isEmpty()) {
|
||||||
|
contactList.addAll(originalContactList);
|
||||||
|
sCachedFilteredList.addAll(originalContactList);
|
||||||
|
} else {
|
||||||
|
String lowerQuery = query.toLowerCase();
|
||||||
|
for (ContactModel contact : originalContactList) {
|
||||||
|
boolean matchName = contact.getName().toLowerCase().contains(lowerQuery);
|
||||||
|
boolean matchPinyin = contact.getPinyin().toLowerCase().contains(lowerQuery);
|
||||||
|
boolean matchFirstLetter = contact.getPinyinFirstLetter().toLowerCase().contains(lowerQuery);
|
||||||
|
boolean matchNumber = contact.getNumber().contains(lowerQuery);
|
||||||
|
if (matchName || matchPinyin || matchFirstLetter || matchNumber) {
|
||||||
|
contactList.add(contact);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
sCachedFilteredList.addAll(contactList);
|
||||||
|
}
|
||||||
|
contactAdapter.notifyDataSetChanged();
|
||||||
|
recyclerView.setVisibility(View.VISIBLE);
|
||||||
|
LogUtils.d(TAG, "filterContacts: 过滤完成,显示" + contactList.size() + "条数据");
|
||||||
|
}
|
||||||
|
|
||||||
|
// ====================== 内部防抖监听类 ======================
|
||||||
|
public abstract static class DebounceTextWatcher implements TextWatcher {
|
||||||
|
private final long debounceDelay;
|
||||||
|
private Handler handler = new Handler(Looper.getMainLooper());
|
||||||
|
private Runnable pendingRunnable;
|
||||||
|
|
||||||
|
public DebounceTextWatcher(long debounceDelay) {
|
||||||
|
this.debounceDelay = debounceDelay;
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void beforeTextChanged(CharSequence s, int start, int count, int after) {}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void onTextChanged(final CharSequence s, int start, int before, int count) {
|
||||||
|
if (pendingRunnable != null) {
|
||||||
|
handler.removeCallbacks(pendingRunnable);
|
||||||
|
}
|
||||||
|
pendingRunnable = new Runnable() {
|
||||||
|
@Override
|
||||||
|
public void run() {
|
||||||
|
onDebounceTextChanged(s.toString());
|
||||||
|
}
|
||||||
|
};
|
||||||
|
handler.postDelayed(pendingRunnable, debounceDelay);
|
||||||
|
}
|
||||||
|
|
||||||
|
@Override
|
||||||
|
public void afterTextChanged(Editable s) {}
|
||||||
|
|
||||||
|
public abstract void onDebounceTextChanged(String query);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||