上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 25 下一页
  2021年12月6日
摘要: build.gradle中添加 id 'kotlin-kapt' 如图 或者添加 apply plugin: 'kotlin-kapt' dependencies中添加 implementation("androidx.room:room-runtime:2.3.0") annotationProc 阅读全文
posted @ 2021-12-06 11:04 巫山老妖 阅读(537) 评论(0) 推荐(0)
  2021年11月23日
摘要: 正则表达式 : 6~16位字符,至少包含数字.字母.符号中的2种 fun verifyPassWord(string: String): Boolean{ val regex = "^(?!^(\\d+|[a-zA-Z]+|[~!@#$%^&*?]+)$)^[\\w~!@#$%^&*?]{6,16} 阅读全文
posted @ 2021-11-23 17:20 巫山老妖 阅读(2196) 评论(0) 推荐(0)
摘要: win+R键 输入:slmgr.vbs -xpr 下载激活工具,关闭防火墙进行激活 参考于:https://zhuanlan.zhihu.com/p/443924457 阅读全文
posted @ 2021-11-23 11:23 巫山老妖 阅读(417) 评论(0) 推荐(0)
  2021年11月11日
摘要: 在写我们app的时候,app里面用到了科大讯飞的语音识别,在读语音的时候按了音量键, 第一是音量键的进度条不显示;第二是音量调节无法控制,是失效的,虽然按下按键的时候也会有音量键的声音。如图所示:左图异常,右图正常。 原因是Activity里面重写了onKeyDown方法,未对音量键进行监听。 解决 阅读全文
posted @ 2021-11-11 16:35 巫山老妖 阅读(1281) 评论(0) 推荐(0)
  2021年11月9日
摘要: https://www.jianshu.com/p/60eeff99a9ec 阅读全文
posted @ 2021-11-09 13:54 巫山老妖 阅读(174) 评论(0) 推荐(0)
  2021年10月25日
摘要: 如图: 设置 android:autoLink="all" <TextView android:id="@+id/tv_change_wifi" android:layout_width="wrap_content" android:layout_height="14dp" android:layo 阅读全文
posted @ 2021-10-25 16:33 巫山老妖 阅读(2223) 评论(0) 推荐(0)
  2021年10月21日
摘要: 主要是获取dialog 的BottomSheetBehavior 然后设置 setPeekHeight 和 BottomSheetCallback. package com.example.mychartdemo.view import android.graphics.Color import a 阅读全文
posted @ 2021-10-21 14:41 巫山老妖 阅读(2641) 评论(0) 推荐(0)
  2021年10月11日
摘要: 在使用Glide加载Gif动图的时候,遇到了一下问题 Glide.with(this) .load(R.drawable.img_easy_home_gif) .asGif()//加载动态图片,若现有图片为非gif图片,则直接加载错误占位图。 .placeholder(R.drawable.ic_h 阅读全文
posted @ 2021-10-11 17:24 巫山老妖 阅读(610) 评论(0) 推荐(0)
  2021年8月31日
摘要: 1、在values下的strles.xml中添加样式 <!--1:自定义主题--> <style name="LauncherTheme" parent="Theme.AppCompat.Light.NoActionBar"> <item name="android:windowBackground 阅读全文
posted @ 2021-08-31 10:58 巫山老妖 阅读(170) 评论(0) 推荐(0)
  2021年7月28日
摘要: 地址: https://mp.weixin.qq.com/s/3r9iurO-nF1VcS6hAy6D9Q 官方文档地址: https://developer.huawei.com/consumer/cn/doc/development/HMSCore-Guides/service-introduc 阅读全文
posted @ 2021-07-28 15:14 巫山老妖 阅读(196) 评论(0) 推荐(0)
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 25 下一页