上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页
  2022年3月12日
摘要: 删除项目下的.idea目录,然后重新导入 阅读全文
posted @ 2022-03-12 18:33 巫山老妖 阅读(2723) 评论(0) 推荐(0) 编辑
  2022年3月10日
摘要: 1、RGB转十六进制 /* *转16进制数 //十六进制的颜色字符串 */ private fun toBrowserHexValue(number: Int): String { val builder = StringBuilder(Integer.toHexString(number and 阅读全文
posted @ 2022-03-10 17:54 巫山老妖 阅读(1621) 评论(0) 推荐(0) 编辑
  2022年2月20日
摘要: 将集合通过Bundle传递 val bundle = Bundle() Navigation.findNavController(binding.root).navigate(R.id.actionShowDeviceAddFromAutoDetection,bundle) 动作Id: action 阅读全文
posted @ 2022-02-20 20:19 巫山老妖 阅读(128) 评论(0) 推荐(0) 编辑
  2022年2月14日
摘要: 如图: 中心的线在从上到下的动画效果 代码实现: private fun initAnimation() { val mAnimation = TranslateAnimation(TranslateAnimation.ABSOLUTE, 0f, TranslateAnimation.ABSOLUT 阅读全文
posted @ 2022-02-14 16:52 巫山老妖 阅读(1555) 评论(0) 推荐(0) 编辑
  2022年1月7日
摘要: @Override public void onResume() { super.onResume(); getView().setFocusableInTouchMode(true); getView().requestFocus(); getView().setOnKeyListener(new 阅读全文
posted @ 2022-01-07 15:55 巫山老妖 阅读(1421) 评论(0) 推荐(0) 编辑
  2021年12月30日
摘要: 如图: 1、activity_main.xml <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.androi 阅读全文
posted @ 2021-12-30 18:59 巫山老妖 阅读(967) 评论(0) 推荐(0) 编辑
  2021年12月27日
摘要: Icon的尺寸规则 http://www.aoaoyi.com/archives/1341.html https://blog.csdn.net/weixue9/article/details/79053082 阅读全文
posted @ 2021-12-27 17:03 巫山老妖 阅读(27) 评论(0) 推荐(0) 编辑
  2021年12月16日
摘要: 如图: 解决方案一: 关闭自动密码功能: android:importantForAutofill="no" EditText中配置这个属性,就会关闭自动密码功能, 关闭之后会在弹出提示密码框 解决方案二: 设置activity主题色:android:autofilledHighlight设置为你想 阅读全文
posted @ 2021-12-16 16:20 巫山老妖 阅读(416) 评论(0) 推荐(0) 编辑
  2021年12月13日
摘要: 如图: 拍照、相册使用开源库PictureSelector https://github.com/LuckSiege/PictureSelector 目前是一直在维护的,支持从相册或拍照选择图片或视频、音频,支持动态权限获取、裁剪(单图or多图裁剪)、压缩、主题自定义配置等功能、适配android 阅读全文
posted @ 2021-12-13 16:09 巫山老妖 阅读(2394) 评论(0) 推荐(0) 编辑
  2021年12月12日
摘要: 如图: activity_main.xml <?xml version="1.0" encoding="utf-8"?> <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android. 阅读全文
posted @ 2021-12-12 19:34 巫山老妖 阅读(785) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 ··· 25 下一页