如何使用autojs免root脚本实现获取粉丝昵称实战教学

log(APP_取用户昵称())

/*
修改日期:20200601
起始页面:个人资料页
备注说明:
返回值:字符串型
@视频对照教学:www.loveps.vip/121.html
*/
function APP_取用户昵称() {
    var nickName = ""

    let object = className("TextView").depth(17).find();
    if (!object.empty()) {
        object.forEach(function (currentValue, index) {
            if (index == 0) {
                nickName = currentValue.text()
            }
        });

    } else {
        log("没找到╭(╯^╰)╮");
    };
    return nickName  //返回昵称
};

你可能感兴趣的:(vscode)