前言 AI绘画当前非常的火爆,随着Stable diffusion,Midjourney的出现将AI绘画推到顶端,各大行业均受其影响,离我们最近的AI绘画当属Stable...
前言 AI绘画当前非常的火爆,随着Stable diffusion,Midjourney的出现将AI绘画推到顶端,各大行业均受其影响,离我们最近的AI绘画当属Stable...
前言: 在后台项目开发过程从Java延伸到Kotlin开发,从maven pom到gradle,IDEA新项目SpringBoot init框架官方推荐kotlin+grad...
Android Nes Emulator(Nes模拟器/FC任天堂/小霸王游戏)SDK集成 Android Nes模拟器SDK集成,快速引入,配置简单明了,链接如下↓↓↓欢迎...
Android Button设置Background无效不起作用问题,我在代码上创建按钮是这样子的 图片资源也没有问题,存在的 解决方法:在res/values/themes...
@stakes_ge 这个版本还没做https的接口,下个版本会更新
Android快速开发架构PlanA(四),网络请求篇,划重点(必考)Android快速开发架构PlanA,一周一个APP,持续维护中!Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构Pl...
@人生月影 Android P 限制了明文流量的网络请求,非加密的流量请求都会被系统禁止掉,可以在 res 下新建一个 xml 目录,然后创建一个名为:network_security_config.xml的文件:
<?xml version="1.0" encoding="utf-8"?>
<network-security-config>
<base-config cleartextTrafficPermitted="true" />
</network-security-config>
然后在AndroidManifest.xml application 标签内应用上面的xml配置:
android:name=".App"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:networkSecurityConfig="@xml/network_security_config"
android:roundIcon="@mipmap/ic_launcher_round"
android:theme="@style/AppTheme"></application>
Android快速开发架构PlanA(四),网络请求篇,划重点(必考)Android快速开发架构PlanA,一周一个APP,持续维护中!Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构Pl...
@人生月影 PRouter.getInstance().withInt(key,value).withString(key,value).navigation(context,targetActivity.class);
Android快速开发架构PlanA,一周一个APP,持续维护中!Android快速开发架构PlanA,一周一个APP,持续维护中![//www.greatytc.com/p/02e2ce2a7414/]Android快速开发架构...
@lok_h 证书现在还没加
Android快速开发架构PlanA(四),网络请求篇,划重点(必考)Android快速开发架构PlanA,一周一个APP,持续维护中!Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构Pl...
@lok_h 调用系统隐藏titleBar的方法,比如:requestWindowFeature(Window.FEATURE_NO_TITLE);//设置无标题
if (getSupportActionBar() != null)
getSupportActionBar().hide();
if (getActionBar() != null)
getActionBar().hide();
Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构PlanA,一周一个APP,持续维护中!Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构Pl...
SpringBoot系列—1.IDEA搭建SpringBoot框架SpringBoot系列—2.SpringBoot拦截器篇SpringBoot系列—3.SpringBoot...
SpringBoot系列—1.IDEA搭建SpringBoot框架SpringBoot系列—2.SpringBoot拦截器篇SpringBoot系列—3.SpringBoot...
SpringBoot系列—1.IDEA搭建SpringBoot框架SpringBoot系列—2.SpringBoot拦截器篇SpringBoot系列—3.SpringBoot...
SpringBoot系列—1.IDEA搭建SpringBoot框架SpringBoot系列—2.SpringBoot拦截器篇SpringBoot系列—3.SpringBoot...
SpringBoot系列—1.IDEA搭建SpringBoot框架SpringBoot系列—2.SpringBoot拦截器篇SpringBoot系列—3.SpringBoot...
@kilo千 v1.2.2已兼容ConstraintLayout约束布局
Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构PlanA,一周一个APP,持续维护中!Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构Pl...
@kilo千 我封装titleBar的时候约束布局还没有普及
Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构PlanA,一周一个APP,持续维护中!Android快速开发架构PlanA(一),船新版本的BaseActivityAndroid快速开发架构Pl...
有位木匠, 砍了一树, 把它做了三个木桶。 一个装粪,就叫粪桶,众人躲着; 一个装水,就叫水桶,众人用着; 一个装酒,就叫酒桶,众人品着。 桶是一样的,因装的东西不同命运也就...
1.适用场景 在启动某个服务的时候,比如python中django启动的时候8000端口被占用,导致无法启动服务。 2.解决办法 step1:通过命令行找出端口对应的PID进...
1.工具环境 Pycharm2018.3 python3.7 Anaconda3.7 mysql5.7 sqlalchemy1.2.15 2.问题描述 3.相关代码 执行后抛...