- 博客(3)
- 收藏
- 关注
原创 Android Studio权限请求
存储权限 ActivityCompat.requestPermissions(this,new String[]{Manifest.permission.WRITE_EXTERNAL_STORAGE},1);
2020-04-13 14:19:13
771
原创 关于Received close_notify during handshake的解决方法
在使用Jetpack架构Room创建数据库时出现编译错误,如下: Received close_notify during handshake 解决方法: 在build.gradle中进行以下操作 注释部分 // jcenter() 替换为以下代码: maven{ url'http://maven.aliyun.com/nexus/content/groups/public/' } mave...
2020-03-15 17:28:40
3276
原创 ViewModelProviders被弃用的代替方法
在Android Studio最新版本中以下语句被弃用: myViewModel= ViewModelProviders.of(this).get(MyViewModel.class); 代替方法为: myViewModel = new ViewModelProvider(this).get(MyViewModel.class); ...
2020-03-14 13:48:59
3167
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人
RSS订阅