摘要:
// 获取状态栏高度 var statuBar = uni.getSystemInfoSync().statusBarHeight; // 获取胶囊数据 var custom = wx.getMenuButtonBoundingClientRect() // 获取胶囊的宽高 customWidth 阅读全文
摘要:
警告为:对于大屏设备,不建议设置固定方向 解决办法: 1、不设置固定方向 2、添加忽略属性 tools:ignore="LockedOrientationActivity" 3、AS设置->搜索Chrom ->去除勾选 Activity is locked to an orientation 阅读全文
摘要:
背景: 当项目设置targetSdkVersion : 31之后,会遇到android12系统上编译器安装出现报错: INSTALL_PARSE_FAILED_MANIFEST_MALFORMED -> 以及apk安装出现 "解析失败" 解决办法: AndroidManifest 文件中的四大组件中 阅读全文
摘要:
官方文档 <!-- base-input子组件页面 --> <template> <view> <input :focus="isFocus" type="text" placeholder="请输入内容" /> </view> </template> <script> export default 阅读全文
摘要:
1、annotation-注释插件 vue和js函数注释和文件头部注释 阅读全文
摘要:
android提供重写getResources()方法,这个方法效果是全局的。 根据这个方法可以实现: 1、app内文字的大小不受到用户在系统设置中对文字大小调整的影响 2、实现app内文字大小动态改变的需求 分别上代码: 第一种情况: @Override public Resources getR 阅读全文
摘要:
对于css样式不熟练的我发现uni-app的demo中有很多类似uni-row的样式,不过需要先引入到自己的项目中。下面为具体步骤 官网地址 : https://github.com/dcloudio/hello-uniapp/tree/master/common 下载uni.css文件到自己的项目 阅读全文
摘要:
一、strings.xml文件 解决办法: 1、头部resources修改为 <resources xmlns:tools ="http://schemas.android.com/tools" tools:ignore="MissingTranslation"> 2、setting中找到该设置取消 阅读全文
摘要:
AOP即面向切面编程,相关知识可以自己先了解。 这里使用AOP来实现防止按钮重复点击的需求 一、项目配置 1、根目录build.gradle文件 buildscript { dependencies { ... classpath 'com.hujiang.aspectjx:gradle-andro 阅读全文
摘要:
首先非空变量和可空变量的区别: // name为不可为空的变量, 不能赋值为null ,若有判断 if(name==null) 无意义,因为肯定不为null var name : String = "" // role 为可空变量 var role : String? = "" 非空变量赋值为Nul 阅读全文