Google I/O 2021 Android精华内容
Google I/O 2021结束了, 都有什么精彩内容呢?
Android部分的Playlist附上: Android & Play at Google I/O 2021
Developer Keynote (Google I/O '21)
对于Android的部分来说, 主要是:
Android 12
- user safety.
- performance; improved app startup; customizable launch animations.
- user experience; widgets.
Create beautiful apps, easier
现代化的Android开发.
- Android Studio的升级.
- Kotlin: Kotlin Symbol Processing.
- Jetpack: 各种libraries和Compose.
Build across screens.
- 各种屏幕.
- Voice.
- Watches: Health services.
The top 3 things to know in Modern Android Development | Android @ Google I/O'21
Android开发的三个top topic:
- Jetpack: 一系列的Jetpack libraries发布了新版.
- Tooling: Android Studio的升级, 有了WorkManager Inspector, UI的Inspector支持了View和Compose.
- Kotlin.
What's new in Android | Keynote
Android 12 -> S.
@Deprecated-> deprecated.- Color.
- Widgets.
- Launch animations: 系统自带启动动画, 可以定制.
- Notifications: 新的template style;
Trampoline(?) 优化点开notification的那个短暂延迟. - Toasts: 带icon, 说明是哪个app弹的toasts; 控制个数.
- Picture in Picture的改善.
- ImageView有个setRenderEffect可以模糊照片了.
- 可以用theme定制模糊.
- list的弹力拉伸效果. (我自己起的名字, 其实人家叫stretch overscroll).
- Graphics: AVIF. 可以过滤支持的media类型.
- Privacy: 关于permission的一些改进; 剪贴板内容会有toast说明来源; foreground restrictions.
What’s new in Android development tools | Session
Android Studio版本号设计.
- Preview工具可以设置横屏, 定制尺寸, 显示blueprints, play animation. Compose的preview有交互模式.
- Accessibility test framework scanner.
- 适配多种屏幕: Layout validation.
- 折叠屏, 手表.
- 模拟器还可以模拟heart rate.
- snapshots test.
- WorkManager的tasks.
- Migrate to Non-Transitive R Classes...
What’s new in Jetpack | Session
解释了Jetpack的初衷和现状.
alpha和beta版本的意思.
- Experimental Annotations -> Stable.
- CameraX -> Stable.
- AppSearch -> Alpha.
- DataStore -> 用来取代SharedPreferences.
- Security Crypto -> Stable.
- Hilt -> Stable.
- WorkManager -> Stable. (Android Studio也推出了新的WorkManager Inspector.)
- Room -> Stable.
- ConstraintLayout -> Stable. MotionLayout + Motion Editor.
- Fragment -> Stable.
(详见release notes: https://developer.android.com/jetpack/androidx/releases/fragment.)
重建了FragmentManager; 新增了get result的callback; 废弃了一些API, 并且Fragment StrictMode可以检测项目中是否还在使用. - Navigation -> Alpha. 现在支持多个backstacks.
- Google Shortcuts -> Alpha.
- EmojiCompat -> Alpha. (AppCompat 1.4.0以后默认包含.)
- Paging -> Stable.
- Macrobenchmark -> Alpha. (app启动和滚动效率; local/CI.)
- Compose integrations.
What's new in Jetpack Compose | Session
为什么我们需要一个全新的UI Toolkit呢. -> 为了适应更加现代化的开发方式.
faster & easier.
Compose将数据转换成UI.
Checkbox的例子:
UI完全由参数控制. -> single source of truth. 没有其他的状态需要sync.
把参数和回调提到方法参数中去:
- You completely describe your UI for a given state.
- The framework updates your UI when the state changes.
这里有个图, 推荐ViewModel暴露一个Screen状态, 集中管理, 然后下发到每个composable.
这样也利于测试.
Compose实现了material design, 提供了组件, 还有theming system.
有一个owl app的实现解说.
和传统view的interop.
State of Kotlin on Android | Session
- Kotlin变得越来越流行, 不仅app, 还有server.
- Kotlin Symbol Processing目前发布了alpha.
- 编译器的升级.
- 好多好多的ktx库.
- protobuf的支持: https://developers.google.com/protocol-buffers/docs/kotlintutorial
- coroutines的debugger -> coming soon. 可以在线程之间跳转, 查看信息.
What’s new in Android Gradle plugin | Session
New APIs in the Android Gradle Plugin
Using Jetpack libraries in Compose | Session
Jetpack Compose和Jetpack中其他库可以很好的结合使用.
Top 12 tips to get ready for Android 12 | Session
Getting Ready for Android 12.
- Developer Options -> App Compatibility Changes.
- Foreground services were designed for multi-tasking and completing a user action. -> 从后台启动foreground services将被限制.
- Expedited Jobs with WorkManager APIs.
- User may turn off the mic and camera sensors using mic and camera toggles.
- Apps that have not been used for an extended period will be hibernated. (permissions, storage, services)
- Nearby device permission. Decouple Bluetooth scanning from Location.
- MAC address restriction.
- Safe component exporting. 有intent filter就必须显式声明exported.
- Custom notifications deprecation.
- App link improvements.
- WebView Samesite.
- New stretch overscroll.
Google I/O 2021 Android精华内容的更多相关文章
- Android - 分享内容 - 接收其他APP的内容
就象程序可以发送数据给其他程序,所以也可以接收其他程序的数据.想一下用户如何和程序交互,以及想从其他程序接收什么样类型的数据.例如,一个社交程序可能对接收其他程序的文字(比如有趣的网址)感兴趣.Goo ...
- Google 地图 API for Android
原文:Introduction to Google Maps API for Android 作者:Eunice Obugyei 译者:kmyhy 从健康类 app Runkeeper 到游戏 app ...
- Android Google 地图 API for Android
从健康类 app Runkeeper 到游戏 app 精灵宝可梦,位置服务对现代 app 来说越来越重要. 在本文中,我们将创建一个 app,名字就叫做 City Guide.这个 app 允许用户搜 ...
- 一培训机构设计的学习android课程内容:供大家参考
转自:http://www.cnblogs.com/csj007523/archive/2011/06/16/2082682.html 一培训机构设计的学习android课程内容:供大家参考 第一阶段 ...
- 如何使用Google Map API开发Android地图应用
两年前开发过的GoogleMap已经大变样,最近有项目要用到GoogleMap,重新来配置Android GoogleMap开发环境,还真是踩了不少坑. 一.下载Android SDK Manager ...
- 【风马一族_Android】Android 前端内容1
Android 前端内容 4.1 View 类概述 4.1.1 关于 View //类型说明 view(视图)指的是用户界面组件的基本构建基块.一个视图占据屏幕上的矩形区域,负责绘图和事件处理.视图是 ...
- 【风马一族_Android】Android 前端内容
Android 前端内容 4.1 View 类概述 4.1.1 关于 View //类型说明 view(视图)指的是用户界面组件的基本构建基块.一个视图占据屏幕上的矩形区域,负责绘图和事件处理.视图是 ...
- android RelativeLayout 内容居中解决办法
android RelativeLayout 内容居中解决办法: 使用Linearlayout本来利用父控件的gravity属性是很好解决的.但是对应RelativeLayout虽然有 gravi ...
- Google用户登录界面 Android实现
实验效果: 项目目录: Java代码(放在Src文件下) package com.bn.chap9.login; import java.io.BufferedReader; import java. ...
随机推荐
- JDBC_12_JDBC事务
JDBC事务 JDBC中事务默认自动提交,每执行一次SQL就会自动提交一次. 这样的话可能出现数据安全性问题. connection.setAutoCommit(false) false代表关闭自动提 ...
- Day02_14_可变长参数
Java 可变参数 一个方法中只能有一个可变参数 它必须是该方法的最后一个形参(必须放在参数列表最后一个的位置) 传递给可变参数的数据类型必须一致 实例 public class 可变长参数 { pu ...
- python对BP神经网络实现
python对BP神经网络实现 一.概念理解 开始之前首先了解一下BP神经网络,BP的英文是back propagationd的意思,它是一种按误差反向传播(简称误差反传)训练的多层前馈网络,其算法称 ...
- Docker安装Nacos动态服务发现、配置和服务管理平台
一.通过DockerHub拉镜像,版本查看:https://github.com/nacos-group/nacos-docker //稳定版,有权限 docker pull nacos/nacos- ...
- CAP 5.0 版本发布通告
前言 今天,我们很高兴宣布 CAP 发布 5.0 版本正式版.同时我们也很高兴的告诉你 CAP 已经有越来越多的用户并且变得越来越流行. 在 5.0 版本中,我们主要致力于更好的支持 .NET 5 以 ...
- 展开说说,Spring Bean IOC、AOP 循环依赖
作者:小傅哥 博客:https://bugstack.cn 沉淀.分享.成长,让自己和他人都能有所收获! 一.前言 延迟满足能给你带来什么? 大学有四年时间,但几乎所有人都是临近毕业才发现找一份好工作 ...
- vue.js中$emit的理解
<!DOCTYPE html><html> <head> <meta charset="UTF-8"> <title>& ...
- hdu1146
题意: 题意最蛋疼,其实是水题,这个题意整的我wa了一个多小时,我就改改题意吧..有一条河,刚开始的时候在左岸有一条船,这条船最多能运n个货物,一趟的时间是t,有m个货物,每个货物有自己到 ...
- (转)Amazon Aurora MySQL 数据库配置最佳实践
转自:https://zhuanlan.zhihu.com/p/165047153 Amazon Aurora MySQL 数据库配置最佳实践 AWS云计算 已认证的官方帐号 1 人赞同了该文章 ...
- POJ 3228 二分最大流
题意: 给你N个位置,每个位置都有金矿数量和仓库数量,然后位置和位置之间的距离给了出来,最后问你吧所有的金矿都放到库里面走的路径 最长的最短 是多少? 思路: 比较简单的一个题, ...