爱笑手链

文章
5
资源
0
加入时间
3年1月8天

Android 中TextView文字描边实现(一)

Android 9.0效果图:Android 10.0效果图:据以上两图显示此方法只用于android9.0可行,第二种方法见1.attrs.xml文件<?xml version="1.0" encoding="utf-8"?><!-- 自定义的属性名称 和对应的单位 --><attr name="outerColor" format="color|refe

安卓9安装xpose

资源准备:确保已经安装Magisk Manager, 版本不低于V17.0。https://github.com/topjohnwu/Magisk/releases在Magisk Manager里安装 Riru-core,版本不低于 v10 。https://github.com/RikkaApps/Riru/releases在Magisk Manager里安装 EdXposed。https://github.com/solohsu/EdXposed/releases安装Ed Xposed I

Hexo博客部署到服务器---踩坑记录问题1.执行命令hexo g -d出现Please make sure you have the correct access rights and the repository exists.问题2.执行命令hexo g -d遇到错误 ! [remote rejected] HEAD -> main (unpacker error):问题3.部署成功后服务器上找不到文件

Hexo博客部署到服务器—踩坑记录:1.执行命令hexo g -d出现Please make sure you have the correct access rights and the repository exists.遇到的错误:bash: git-receive-pack: command not foundfatal: Could not read from remote repository.Please make sure you have the correct access

VoIP通话的输入路由

status_t AudioALSACaptureHandlerAEC::open(){ if (mStreamAttributeTarget->input_device == AUDIO_DEVICE_IN_BLUETOOTH_SCO_HEADSET) { // open BT data provider if (WCNChipControlle

keil报错syntax error near 'int', expected '__asm'解决方案提示信息解决方案:原理

提示信息error C141: syntax error near ‘int’, expected ‘__asm’解决方案:c不支持中途定义,把变量定义放到函数最前面问题解决路径&背后原理问题代码int a;int main(){ a=1; int b=2;}定义放在普通语句后面,c是不可以中途定义的(c++显然可以)对报错信息的解读syntax error n...