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. ...
随机推荐
- HashSet、CopyOnWriteArraySet、ConcurrentSkipListSet源码解析(JDK1.8)
目录 HashSet源码解析 HashSet简单使用的demo HashSet中的变量 HashSet的构造函数 HashSet的add方法 HashSet的iterator方法 HashSet的si ...
- HUAWEI AppGallery Connect翻译服务升级,方便应用出海本地化
HUAWEI AppGallery Connect翻译服务全新升级,携手新宇智慧.语言桥等多家服务商为全球开发者提供优质的翻译服务,解决应用在全球分发时面临的多语言本地化问题,通过平台化与全环节的翻译 ...
- Day06_32_Java各种内部类
内部类 内部类都有哪些? 成员内部类 匿名内部类 静态内部类 局部内部类 成员内部类 - 成员内部类内部不能有静态声明(静态方法和静态变量) - 成员内部类可以访问外部类中所有的数据包括静态数据和实例 ...
- Day05_24_继承
继承 什么是继承? 继承本质上是对某一批类的抽象,从而实现对现实世界更好的建模.继承是类和类之间的一种关系,除此之外类和类之间的关系还有依赖.组合.聚合等. 继承就是子类(派生类)继承父类(基类)的特 ...
- 035- 控制语句_break和continue
break break是java语言中的关键字,中文是打断,终止的意思 可以用在switch语句中,结束分支语句,防止case穿透现象的发生. 可以出现在循环当中,作用是结束整个循环的执行,默认情况下 ...
- 6- MySQL条件查询与通配符
-数据库表中一般包含大量的数据,很少需要查询表中的所有行,通常只会根据特定的需要提取表中的一部分数据.这个时候需要制定查询条件,及过滤条件. -在select语句中,数据库根据where字句中指定的查 ...
- 【JVM】JVM中的垃圾收集器
垃圾收集器组合 Serial+Serial Old Serial+CMS ParNew+CMS ParNew+Serial Old Paralle Scavenge + Serial Old Para ...
- DVWA之Command Injection
Command Injection Command Injection,即命令注入,是指通过提交恶意构造的参数破坏命令语句结构,从而达到执行恶意命令的目的.PHP命令注入攻击漏洞是PHP应用程序中常见 ...
- VPS、云主机 and 服务器集群、云计算 的区别
VPS:(virtual private server)虚拟专用服务器,将一台服务器分割成多个虚拟专享服务器的优质服务.实现VPS的技术分为容器技术和虚拟化技术.在容器或虚拟机中,每个VPS都可分配独 ...
- Day004 顺序结构
顺序结构 JAVA的基本结构就是顺序结构,除非特别指明,否则就按照顺序一句一句执行. 顺序结构是最简单的算法结构. 语句与语句之间,是按照从上到下的顺序进行的,它是由若干个依次执行的处理步骤组成的,它 ...