会员
众包
新闻
博问
闪存
赞助商
HarmonyOS
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
会员中心
简洁模式
...
退出登录
注册
登录
ou尼酱~~~
I hope you could get what you want here.
博客园
首页
新随笔
联系
订阅
管理
上一页
1
···
3
4
5
6
7
8
9
10
11
12
下一页
2021年6月11日
将博客搬至CSDN
摘要: 将博客搬至CSDN
阅读全文
posted @ 2021-06-11 08:59 ou尼酱~~~
阅读(104)
评论(0)
推荐(0)
2021年6月10日
操作系统概览
摘要: 概述1: 并发事件,宏观上同时,微观上交替。 单核cpu同一时刻只能执行同一程序,各个程序只能并发执行 多核cpu可以并行执行多个程序 互斥共享和同时共享的区别:是否可以被多个进程“同时”(宏观上)访问 没有共享,就没有并发;没有并发,也没有共享;没有并发,也没有虚拟性;只有并发性,才有可能导致异步
阅读全文
posted @ 2021-06-10 20:55 ou尼酱~~~
阅读(127)
评论(0)
推荐(0)
数据绑定 DataBinding
摘要: 一: 在activity里 binding = DataBindingUtil.setContentView(this, R.layout.activity_main) = binding = ActivityMainBinding.inflate(layoutInflater) setConten
阅读全文
posted @ 2021-06-10 18:23 ou尼酱~~~
阅读(130)
评论(0)
推荐(0)
2021年6月9日
Android-FileProvider学习——文件操作
摘要: 一 : content-url(content://)相比于file-url(file:///),安全很多。intent通过把uri设置为它的参数,并通过setFlags设置flag,可以让其他app获得该uri的临时访问。而file的话,授权是永久的,除非手动改变。 二:使用fileProvide
阅读全文
posted @ 2021-06-09 16:22 ou尼酱~~~
阅读(586)
评论(0)
推荐(0)
双指针 leetcode 633
摘要: 自己的解法为: long num = c; long l = 0; long r = c; while (l <= r){ if ((Math.pow(l, 2) + Math.pow(r, 2)) < num) {l++;continue;} if ((Math.pow(l, 2) + Math.
阅读全文
posted @ 2021-06-09 09:47 ou尼酱~~~
阅读(109)
评论(0)
推荐(0)
2021年6月8日
内部存储和外部存储
摘要: 这张图是Android11之前的,现在Android11外部存储空间已经变成: 现在图为: 现在得到私有目录file的话用context.getFileDir()还是可以的,访问外部的话,那些什么Enviroment直接取用的getExternal那些都不行了。这时候建议用MediaStore和Fi
阅读全文
posted @ 2021-06-08 19:26 ou尼酱~~~
阅读(154)
评论(0)
推荐(0)
2021年6月6日
camerax——uesecase之preview
摘要: 添加依赖 def camerax_version = "1.0.0" // CameraX core library using camera2 implementation implementation "androidx.camera:camera-camera2:$camerax_versio
阅读全文
posted @ 2021-06-06 14:55 ou尼酱~~~
阅读(212)
评论(0)
推荐(0)
java.io.file库学习
摘要:
阅读全文
posted @ 2021-06-06 08:38 ou尼酱~~~
阅读(104)
评论(0)
推荐(0)
2021年6月5日
leecode 406
摘要: /** * 解题思路:先排序再插入 * 1.排序规则:按照先H高度降序,K个数升序排序 * 2.遍历排序后的数组,根据K插入到K的位置上 * * 核心思想:高个子先站好位,矮个子插入到K位置上,前面肯定有K个高个子,矮个子再插到前面也满足K的要求 * * @param people * @retur
阅读全文
posted @ 2021-06-05 10:23 ou尼酱~~~
阅读(119)
评论(0)
推荐(0)
记录好用的库
摘要: 人工智能,面部识别:https://developers.google.com/ml-kit/vision/face-detection/android 权限请求:permissionX
阅读全文
posted @ 2021-06-05 09:28 ou尼酱~~~
阅读(118)
评论(0)
推荐(0)
上一页
1
···
3
4
5
6
7
8
9
10
11
12
下一页
公告