Como as versões anteriores, o Android 15 inclui mudanças de comportamento que podem afetar seu app. As mudanças de comportamento a seguir se aplicam exclusivamente a apps direcionados ao Android 15 ou versões mais recentes. Caso seu app seja direcionado ao Android 15 ou a versões mais recentes, modifique seu app para oferecer suporte a esses comportamentos de forma adequada, em que aplicável.
Consulte também a lista de mudanças de comportamento que afetam todos os apps.
executados no Android 15, independente do targetSdkVersion
do app.
Principal recurso
O Android 15 modifica ou expande vários recursos principais do sistema Android.
Mudanças nos serviços em primeiro plano
我们将在 Android 15 中对前台服务进行以下更改。
数据同步前台服务超时行为
Android 15 针对以目标平台为目标平台的应用为 dataSync
引入了新的超时行为
Android 15(API 级别 35)或更高版本。这一行为也适用于新的
mediaProcessing
前台服务类型。
系统允许应用的 dataSync
服务总共运行 6 小时
之后,系统会调用正在运行的服务的
Service.onTimeout(int, int)
方法(在 Android 中引入)
15)。此时,服务有几秒钟的时间来调用
Service.stopSelf()
。调用 Service.onTimeout()
时,
服务不再被视为前台服务。如果该服务没有
调用 Service.stopSelf()
时,系统会抛出内部异常。通过
Logcat 中会记录以下异常:
Fatal Exception: android.app.RemoteServiceException: "A foreground service of
type dataSync did not stop within its timeout: [component name]"
为避免这种行为变更出现问题,您可以执行下列一项或多项操作 以下:
- 让您的服务实现新的
Service.onTimeout(int, int)
方法。 当您的应用收到回调时,请务必在stopSelf()
几秒。(如果您不立即停止应用,则系统会生成 失败。) - 确保应用的
dataSync
服务运行的总时间不超过 在任何 24 小时内为 6 小时(除非用户与应用互动; 重置计时器)。 - 仅在用户执行直接操作后启动
dataSync
项前台服务 互动;由于服务启动时您的应用位于前台 您的服务在应用转入后台后的完整运行 6 小时。 - 请不要使用
dataSync
前台服务,而应使用 替代 API。
如果您的应用的 dataSync
前台服务在过去 6 小时内运行过
24,除非用户dataSync
已将您的应用调到前台(这会重置计时器)。如果您尝试
启动另一个 dataSync
前台服务时,系统会抛出
ForegroundServiceStartNotAllowedException
并显示类似“前台服务的时限已用尽”的错误消息
type dataSync”。
测试
如需测试应用的行为,您可以启用数据同步超时(即使应用也是如此)
未以 Android 15 为目标平台(只要应用在 Android 15 上运行即可)
设备)。如需启用超时功能,请运行以下 adb
命令:
adb shell am compat enable FGS_INTRODUCE_TIME_LIMITS your-package-name
您还可以调整超时期限,以便更轻松地测试
在达到该限制时,应用的行为。要设置新的超时期限,请运行
以下 adb
命令:
adb shell device_config put activity_manager data_sync_fgs_timeout_duration duration-in-milliseconds
新建媒体处理前台服务类型
Android 15 introduces a new foreground service type, mediaProcessing
. This
service type is appropriate for operations like transcoding media files. For
example, a media app might download an audio file and need to convert it to a
different format before playing it. You can use a mediaProcessing
foreground
service to make sure the conversion continues even while the app is in the
background.
The system permits an app's mediaProcessing
services to run for a total of 6
hours in a 24-hour period, after which the system calls the running service's
Service.onTimeout(int, int)
method (introduced in Android
15). At this time, the service has a few seconds to call
Service.stopSelf()
. If the service does not
call Service.stopSelf()
, the system throws an internal exception. The
exception is logged in Logcat with the following message:
Fatal Exception: android.app.RemoteServiceException: "A foreground service of
type mediaProcessing did not stop within its timeout: [component name]"
To avoid having the exception, you can do one of the following:
- Have your service implement the new
Service.onTimeout(int, int)
method. When your app receives the callback, make sure to callstopSelf()
within a few seconds. (If you don't stop the app right away, the system generates a failure.) - Make sure your app's
mediaProcessing
services don't run for more than a total of 6 hours in any 24-hour period (unless the user interacts with the app, resetting the timer). - Only start
mediaProcessing
foreground services as a result of direct user interaction; since your app is in the foreground when the service starts, your service has the full six hours after the app goes to the background. - Instead of using a
mediaProcessing
foreground service, use an alternative API, like WorkManager.
If your app's mediaProcessing
foreground services have run for 6 hours in the
last 24, you cannot start another mediaProcessing
foreground service unless
the user has brought your app to the foreground (which resets the timer). If you
try to start another mediaProcessing
foreground service, the system throws
ForegroundServiceStartNotAllowedException
with an error message like "Time limit already exhausted for foreground service
type mediaProcessing".
For more information about the mediaProcessing
service type, see Changes to
foreground service types for Android 15: Media processing.
Testing
To test your app's behavior, you can enable media processing timeouts even if
your app is not targeting Android 15 (as long as the app is running on an
Android 15 device). To enable timeouts, run the following adb
command:
adb shell am compat enable FGS_INTRODUCE_TIME_LIMITS your-package-name
You can also adjust the timeout period, to make it easier to test how your
app behaves when the limit is reached. To set a new timeout period, run the
following adb
command:
adb shell device_config put activity_manager media_processing_fgs_timeout_duration duration-in-milliseconds
对启动前台服务的 BOOT_COMPLETED
广播接收器实施限制
在启动 BOOT_COMPLETED
广播接收器方面存在新限制
前台服务。BOOT_COMPLETED
接收器不能启动
以下类型的前台服务:
dataSync
camera
mediaPlayback
phoneCall
mediaProjection
microphone
(自 Android 14 起,microphone
就受到此限制)
如果 BOOT_COMPLETED
接收器尝试启动任何上述类型的前台
服务,系统会抛出 ForegroundServiceStartNotAllowedException
。
测试
如需测试应用的行为,您可以启用这些新限制,即使您的应用并未以 Android 15 为目标平台(只要应用在 Android 15 设备上运行)也是如此。运行以下 adb
命令:
adb shell am compat enable FGS_BOOT_COMPLETED_RESTRICTIONS your-package-name
如需在不重启设备的情况下发送 BOOT_COMPLETED
广播,请运行以下 adb
命令:
adb shell am broadcast -a android.intent.action.BOOT_COMPLETED your-package-name
限制在应用拥有 SYSTEM_ALERT_WINDOW
权限时启动前台服务
以前,如果应用拥有 SYSTEM_ALERT_WINDOW
权限,则可以启动
前台服务,即使应用当前在后台运行(如
请参阅后台启动限制的豁免部分)。
如果应用以 Android 15 为目标平台,则此豁免的范围现在更窄。现在,该应用需要
具有 SYSTEM_ALERT_WINDOW
权限,并且还应显示一个可见叠加层
窗口。也就是说,应用需要先启动一个
TYPE_APPLICATION_OVERLAY
窗口和窗口
在您启动前台服务之前必须处于可见状态。
如果您的应用试图在后台启动前台服务,却没有启动
符合这些新要求(并且不具有某些其他豁免情况),
系统会抛出 ForegroundServiceStartNotAllowedException
。
如果您的应用声明了 SYSTEM_ALERT_WINDOW
权限
并在后台启动前台服务时,可能会受此影响
更改。如果您的应用收到 ForegroundServiceStartNotAllowedException
,请检查
应用的操作顺序,并确保应用已有
叠加层窗口,然后再尝试从
背景。您可以检查叠加窗口当前是否可见
致电 View.getWindowVisibility()
,或者
可以替换 View.onWindowVisibilityChanged()
以便在公开范围发生变化时收到通知。
测试
如需测试应用的行为,即使您的
应用并非以 Android 15 为目标平台(只要该应用在 Android 15 上运行即可)
设备)。为了在启动前台服务时启用这些新限制
在后台运行以下 adb
命令:
adb shell am compat enable FGS_SAW_RESTRICTIONS your-package-name
Mudanças na possibilidade de os apps modificarem o estado global do modo "Não perturbe"
Os apps direcionados ao Android 15 não podem mais mudar o estado ou a política global do
Não perturbe em um dispositivo, seja modificando as configurações do usuário ou desativando
o modo Não perturbe. Em vez disso, os apps precisam contribuir com um AutomaticZenRule
, que
o sistema combina em uma política global com o esquema
most-restrictive-policy-wins atual. As chamadas para APIs existentes que anteriormente
afetaram o estado global (setInterruptionFilter
,
setNotificationPolicy
) resultam na criação ou atualização de um
AutomaticZenRule
implícito, que pode ser ativado e desativado dependendo do
ciclo de chamadas dessas chamadas de API.
Essa mudança afeta apenas o comportamento observável se o app estiver chamando
setInterruptionFilter(INTERRUPTION_FILTER_ALL)
e espera que essa chamada desative
um AutomaticZenRule
que foi ativado anteriormente pelos proprietários.
Mudanças na API OpenJDK
O Android 15 continua o trabalho de atualizar as principais bibliotecas do Android para se alinhar com os recursos das versões mais recentes do LTS do OpenJDK.
Algumas dessas mudanças podem afetar a compatibilidade dos apps destinados à segmentação Android 15 (nível 35 da API):
Mudanças nas APIs de formatação de strings: validação do índice de argumentos, flags A largura e a precisão agora são mais rigorosas com o uso das APIs
String.format()
eFormatter.format()
:String.format(String, Object[])
String.format(Locale, String, Object[])
Formatter.format(String, Object[])
Formatter.format(Locale, String, Object[])
Por exemplo, a exceção a seguir é gerada quando um índice de argumento de 0 é usado (
%0
na string de formato):IllegalFormatArgumentIndexException: Illegal format argument index = 0
Nesse caso, o problema pode ser corrigido usando um índice de argumento de 1 (
%1
). na string de formato).Mudanças no tipo de componente de
Arrays.asList(...).toArray()
: ao usarArrays.asList(...).toArray()
, o tipo de componente da matriz resultante é agora umObject
, e não o tipo dos elementos da matriz. Então, o O código abaixo gera umaClassCastException
:String[] elements = (String[]) Arrays.asList("one", "two").toArray();
Nesse caso, para preservar
String
como o tipo de componente no resultado pode usarCollection.toArray(Object[])
:String[] elements = Arrays.asList("two", "one").toArray(new String[0]);
Mudanças no processamento do código de linguagem: ao usar a API
Locale
, os códigos de idioma para hebraico, iídiche e indonésio não são mais convertidos às formas obsoletas (hebraico:iw
, iídiche:ji
e indonésio:in
). Ao especificar o código do idioma para uma dessas localidades, use os códigos a partir da ISO 639-1 (hebraico:he
, iídiche:yi
e indonésio:id
).Mudanças em sequências int aleatórias: após as alterações feitas em https://bugs.openjdk.org/Browse/JDK-8301574, o seguinte Métodos
Random.ints()
agora retornam uma sequência de números diferente da os métodosRandom.nextInt()
fazem:De modo geral, essa mudança não resulta em um comportamento inapropriado para o app, mas seu o código não vai esperar que a sequência gerada pelos métodos
Random.ints()
corresponder aRandom.nextInt()
.
A nova API SequencedCollection
pode afetar a compatibilidade do seu app
depois de atualizar compileSdk
na configuração do build do app para usar
Android 15 (nível 35 da API):
Colisão com
MutableList.removeFirst()
e Funções de extensãoMutableList.removeLast()
emkotlin-stdlib
O tipo
List
(link em inglês) em Java é mapeado para o tipoMutableList
em Kotlin. Como as APIsList.removeFirst()
eList.removeLast()
foram lançados no Android 15 (nível 35 da API), o compilador Kotlin resolve chamadas de função, por exemplo,list.removeFirst()
, estaticamente para a das novas APIsList
em vez das funções de extensãokotlin-stdlib
.Se um app for recompilado com
compileSdk
definido como35
eminSdk
definido como34
ou anterior, e o app é executado no Android 14 e em versões anteriores, um ambiente de execução. é gerado:java.lang.NoSuchMethodError: No virtual method removeFirst()Ljava/lang/Object; in class Ljava/util/ArrayList;
A opção de lint
NewApi
já existente no Plug-in do Android para Gradle pode detectar esses erros novos usos de API../gradlew lint
MainActivity.kt:41: Error: Call requires API level 35 (current min is 34): java.util.List#removeFirst [NewApi] list.removeFirst()Para corrigir a exceção de ambiente de execução e os erros de lint,
removeFirst()
e As chamadas de funçãoremoveLast()
podem ser substituídas porremoveAt(0)
eremoveAt(list.lastIndex)
, respectivamente, em Kotlin. Se você usa Android Studio Ladybug | versão 2024.1.3 ou mais recente, também fornece uma correção rápida para esses erros.Considere remover
@SuppressLint("NewApi")
elintOptions { disable 'NewApi' }
se a opção de lint tiver sido desativada.Colisão com outros métodos em Java
Novos métodos foram adicionados aos tipos existentes, por exemplo,
List
eDeque
. Esses novos métodos podem não ser compatíveis com métodos com o mesmo nome e tipos de argumento em outras interfaces e classes. No caso de uma colisão de assinatura de método com incompatibilidade, o compiladorjavac
vai gerar um erro de tempo de build. Por exemplo:Exemplo de erro 1:
javac MyList.java
MyList.java:135: error: removeLast() in MyList cannot implement removeLast() in List public void removeLast() { ^ return type void is not compatible with Object where E is a type-variable: E extends Object declared in interface ListExemplo de erro 2:
javac MyList.java
MyList.java:7: error: types Deque<Object> and List<Object> are incompatible; public class MyList implements List<Object>, Deque<Object> { both define reversed(), but with unrelated return types 1 errorExemplo de erro 3:
javac MyList.java
MyList.java:43: error: types List<E#1> and MyInterface<E#2> are incompatible; public static class MyList implements List<Object>, MyInterface<Object> { class MyList inherits unrelated defaults for getFirst() from types List and MyInterface where E#1,E#2 are type-variables: E#1 extends Object declared in interface List E#2 extends Object declared in interface MyInterface 1 errorPara corrigir esses erros de build, a classe que implementa essas interfaces deve substituir o método por um tipo de retorno compatível. Exemplo:
@Override public Object getFirst() { return List.super.getLast(); }
Segurança
O Android 15 inclui mudanças que promovem a segurança do sistema para ajudar a proteger os apps e os usuários contra apps maliciosos.
Inicializações de atividades seguras em segundo plano
Android 15 可保护用户免受恶意应用的侵害,并让用户更好地控制 来防止恶意后台应用 将其他应用置于前台、提升其权限以及滥用 用户互动自以下时间以来,后台活动启动一直受到限制 Android 10(API 级别 29)。
禁止与堆栈中的顶部 UID 不匹配的应用启动 activity
恶意应用可以在同一任务中启动另一个应用的 activity,然后
叠加在上面,营造出像该应用一样的错觉。这个“任务”
劫持"攻击绕过了当前的后台启动限制,
会发生在同一个可见任务中。为了降低这种风险,Android 15 新增了
用于阻止与堆栈中的顶层 UID 不匹配的应用启动的标志
活动。如需选择启用应用的所有活动,请更新
allowCrossUidActivitySwitchFromBelow
属性:AndroidManifest.xml
<application android:allowCrossUidActivitySwitchFromBelow="false" >
如果满足以下所有条件,则启用新的安全措施:
- 执行启动的应用以 Android 15 为目标平台。
- 任务堆栈顶部的应用以 Android 15 为目标平台。
- 所有可见活动都已选择启用新保护措施
如果启用了安全措施,应用可能会返回主屏幕,而不是返回 最后一个可见应用(如果他们自行完成任务)。
其他变更
除了限制 UID 匹配之外,这些其他变更也 包括:
- 更改
PendingIntent
创作者,以阻止后台活动启动,具体方法是: 默认。这有助于防止应用意外创建 可能被恶意操作者滥用的PendingIntent
。 - 请勿将应用调到前台,除非
PendingIntent
发送者 允许它。此变更旨在防止恶意应用滥用 在后台启动 activity 的功能。默认情况下,应用 允许将任务堆栈转到前台,除非创建者允许 后台活动启动权限或发送者有后台活动 启动权限 - 控制任务堆栈的顶层 activity 完成其任务的方式。如果 顶层 activity 完成一项任务后,Android 会返回到之前执行的 上次活动时间。此外,如果非顶层 activity 完成其任务,Android 将 返回主屏幕;因此不会阻碍这个非顶层的 活动。
- 防止将其他应用中的任意 activity 启动到您自己的 activity 任务。这项变更旨在防止恶意应用 看起来像是来自其他应用的活动
- 禁止将不可见窗口视为后台活动 发布。这有助于防止恶意应用滥用后台 activity 来向用户显示不需要或恶意的内容。
Intents mais seguras
Android 15 引入了新的安全措施,可让 intent 更加安全且更安全 稳健。这些变更旨在防范潜在的漏洞和 可能会被恶意应用利用的 intent 滥用。有两个主要的 Android 15 中对 intent 安全性的改进:
- 匹配目标 intent 过滤器:针对特定组件的 intent 准确匹配目标的 intent 过滤器规范。如果您发送 intent 来启动另一个应用的 activity,则目标 intent 组件需要 与接收 activity 声明的 intent 过滤器保持一致。
- intent 必须具有操作:没有操作的 intent 将不再匹配 任何 intent 过滤器。也就是说,用于启动 activity 或 服务都必须有明确定义的操作。
- 待处理 intent:待处理 intent 的创建者为 被视为封装 intent 的发送者,而非待处理 intent 的发送者 意图
Kotlin
fun onCreate() { StrictMode.setVmPolicy(VmPolicy.Builder() .detectUnsafeIntentLaunch() .build() ) }
Java
public void onCreate() { StrictMode.setVmPolicy(new VmPolicy.Builder() .detectUnsafeIntentLaunch() .build()); }
Experiência do usuário e interface do sistema
O Android 15 inclui algumas mudanças que visam criar uma versão mais consistente, experiência do usuário intuitiva.
Mudanças no encarte da janela
Há duas mudanças relacionadas a encartes de janela no Android 15: de ponta a ponta é aplicada por padrão, e também há mudanças de configuração, como a configuração padrão das barras do sistema.
Aplicação de ponta a ponta
在搭载 Android 15 的设备上,应用会默认采用全屏 以 Android 15(API 级别 35)为目标平台。
<ph type="x-smartling-placeholder">这是一项可能会对应用的界面产生负面影响的破坏性更改。通过 更改会影响以下界面区域:
- 手势手柄导航栏
<ph type="x-smartling-placeholder">
- </ph>
- 默认透明。
- 底部偏移量已停用,因此内容绘制在系统导航栏后面 栏。
setNavigationBarColor
和R.attr#navigationBarColor
已弃用,不会影响手势导航。setNavigationBarContrastEnforced
和R.attr#navigationBarContrastEnforced
不会对 手势导航。
- “三按钮”导航
<ph type="x-smartling-placeholder">
- </ph>
- 默认不透明度设为 80%,颜色可能与窗口一致 背景。
- 底部偏移值已停用,因此内容绘制在系统导航栏后面 除非应用了边衬区。
setNavigationBarColor
和R.attr#navigationBarColor
默认设置为与窗口背景匹配。窗口背景 必须是颜色可绘制对象,才能应用此默认值。此 API 是 但会继续影响“三按钮”导航。setNavigationBarContrastEnforced
和R.attr#navigationBarContrastEnforced
默认为 true,这会添加一个 “三按钮”导航模式显示 80% 不透明的背景。
- 状态栏
<ph type="x-smartling-placeholder">
- </ph>
- 默认透明。
- 顶部偏移量已停用,因此除非 边衬区。
setStatusBarColor
和R.attr#statusBarColor
已废弃,对 Android 15 没有任何影响。setStatusBarContrastEnforced
和R.attr#statusBarContrastEnforced
已弃用,但仍具有 对 Android 15 的影响。
- 刘海屏
<ph type="x-smartling-placeholder">
- </ph>
layoutInDisplayCutoutMode
的非浮动窗口必须是LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
。SHORT_EDGES
、NEVER
和 系统会将DEFAULT
解释为ALWAYS
,这样用户就不会看到黑色图标 长条形尺寸,显示为无边框。
以下示例显示了定位前后的应用 Android 15(API 级别 35)以及应用边衬区之前和之后。
<ph type="x-smartling-placeholder">。 <ph type="x-smartling-placeholder">。 <ph type="x-smartling-placeholder">检查应用是否已采用全屏的检查步骤
如果您的应用已经采用无边框且应用了边衬区, 基本未受影响,但下列情况除外。但即使您认为 您不会受到影响,但我们建议您测试自己的应用。
- 您的非浮动窗口(例如
Activity
)使用SHORT_EDGES
、NEVER
或DEFAULT
,而不是LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
。如果您的应用在启动时崩溃 可能是启动画面所致您可以升级核心 初始屏幕依赖项更改为 1.2.0-alpha01 或更高版本,或者设置window.attributes.layoutInDisplayCutoutMode = WindowManager.LayoutInDisplayCutoutMode.always
。 - 可能会有流量较低的屏幕显示被遮挡的界面。验证这些
访问较少的屏幕也不会显示被遮挡的界面。流量较低的屏幕包括:
<ph type="x-smartling-placeholder">
- </ph>
- 初始配置或登录屏幕
- “设置”页面
如何检查应用尚未实现无边框
如果您的应用还没有全面屏,那么您很可能会受到影响。在 除了针对已经采用无边框的应用的情况之外, 请考虑以下事项:
- 如果您的应用使用 Material 3 组件 (
androidx.compose.material3
),例如TopAppBar
,BottomAppBar
和NavigationBar
,那么这些组件可能不 会受到影响,因为它们会自动处理边衬区。 - 如果您的应用使用 Material 2 组件 (
androidx.compose.material
),那么这些组件 不会自动处理边衬区。不过,您可以使用边衬区 并手动应用这些设置在 androidx.compose.material 1.6.0 中 然后使用windowInsets
参数手动应用边衬区BottomAppBar
、TopAppBar
、BottomNavigation
和NavigationRail
。 同样,对以下内容使用contentWindowInsets
形参:Scaffold
。 - 如果您的应用使用视图和 Material 组件
(
com.google.android.material
),大多数基于 View 的 Material 如BottomNavigationView
、BottomAppBar
、NavigationRailView
或NavigationView
,处理边衬区,不需要 额外工作。但是,您需要将android:fitsSystemWindows="true"
如果使用AppBarLayout
,则会发生此错误。 - 对于自定义可组合项,请手动将边衬区作为内边距应用。如果您的
内容位于
Scaffold
内,因此您可以使用Scaffold
来使用边衬区 内边距值。否则,使用WindowInsets
。 - 如果您的应用使用的是视图和
BottomSheet
、SideSheet
或自定义 使用ViewCompat.setOnApplyWindowInsetsListener
。对于RecyclerView
,使用此监听器应用内边距,同时添加clipToPadding="false"
。
检查应用是否必须提供自定义后台保护的注意事项
如果您的应用必须为“三按钮”导航或
状态栏,则应用应将可组合项或视图放在系统栏后面
使用 WindowInsets.Type#tappableElement()
获取三按钮
导航栏高度或 WindowInsets.Type#statusBars
。
其他无边框资源
请参阅无边框视图和无边框 Compose 了解应用边衬区的其他注意事项。
已弃用的 API
以下 API 现已弃用:
R.attr#enforceStatusBarContrast
R.attr#navigationBarColor
R.attr#navigationBarDividerColor
R.attr#statusBarColor
Window#getNavigationBarColor
Window#getNavigationBarDividerColor
Window#getStatusBarColor
Window#isStatusBarContrastEnforced
Window#setDecorFitsSystemWindows
Window#setNavigationBarColor
Window#setNavigationBarDividerColor
Window#setStatusBarColor
Window#setStatusBarContrastEnforced
Configuração estável
如果您的应用以 Android 15(API 级别 35)或更高版本为目标平台,Configuration
否
不再包含系统栏。如果您使用
Configuration
类,您应将其替换为更好的
相应的 ViewGroup
、WindowInsets
或
WindowMetricsCalculator
,具体取决于您的需求。
Configuration
从 API 1 开始提供。它通常从
Activity.onConfigurationChanged
。它提供窗口密度、
屏幕方向和尺寸窗口大小的一个重要特征
Configuration
之前会排除系统栏。
配置大小通常用于选择资源,例如
/res/layout-h500dp
,这仍然是一个有效的用例。但将其用于
但一直不建议进行布局计算。如果需要,您应该将
现在离它远去。您应该使用 Configuration
具体取决于您的应用场景。
如果使用它来计算布局,请使用适当的 ViewGroup
,例如
CoordinatorLayout
或 ConstraintLayout
。如果使用该属性确定高度
,请使用 WindowInsets
。如果您想知道当前尺寸
,请使用 computeCurrentWindowMetrics
。
以下列表介绍了受此变更影响的字段:
Configuration.screenWidthDp
和screenHeightDp
尺寸不再 排除系统栏。Configuration.smallestScreenWidthDp
受到更改的间接影响 发送给screenWidthDp
和screenHeightDp
。Configuration.orientation
受到以下项的更改间接影响:screenWidthDp
和screenHeightDp
,在近似方形设备上显示。Display.getSize(Point)
会间接受到Configuration
。从 API 级别 30 开始,此 API 已废弃。- 从 API 级别 33 开始,
Display.getMetrics()
已采用这种方式。
O atributo eleganteTextHeight assume o padrão como verdadeiro
For apps targeting Android 15 (API level 35), the
elegantTextHeight
TextView
attribute
becomes true
by default, replacing the compact font used by default with some
scripts that have large vertical metrics with one that is much more readable.
The compact font was introduced to prevent breaking layouts; Android 13 (API
level 33) prevents many of these breakages by allowing the text layout to
stretch the vertical height utilizing the fallbackLineSpacing
attribute.
In Android 15, the compact font still remains in the system, so your app can set
elegantTextHeight
to false
to get the same behavior as before, but it is
unlikely to be supported in upcoming releases. So, if your app supports the
following scripts: Arabic, Lao, Myanmar, Tamil, Gujarati, Kannada, Malayalam,
Odia, Telugu or Thai, test your app by setting elegantTextHeight
to true
.
Mudanças na largura da TextView em formas de letra complexas
In previous versions of Android, some cursive fonts or languages that have
complex shaping might draw the letters in the previous or next character's area.
In some cases, such letters were clipped at the beginning or ending position.
Starting in Android 15, a TextView
allocates width for drawing enough space
for such letters and allows apps to request extra paddings to the left to
prevent clipping.
Because this change affects how a TextView
decides the width, TextView
allocates more width by default if the app targets Android 15 (API level 35) or
higher. You can enable or disable this behavior by calling the
setUseBoundsForWidth
API on TextView
.
Because adding left padding might cause a misalignment for existing layouts, the
padding is not added by default even for apps that target Android 15 or higher.
However, you can add extra padding to preventing clipping by calling
setShiftDrawingOffsetForStartOverhang
.
The following examples show how these changes can improve text layout for some fonts and languages.
Altura da linha padrão com reconhecimento de localidade para EditText
在以前的 Android 版本中,文本布局拉伸了文本的高度,使其适应与当前语言区域匹配的字体的行高。例如,如果内容是日语,由于日语字体的行高比拉丁字体的行高略大,因此文本的高度就略大了。不过,尽管行高存在这些差异,但无论使用何种语言区域,EditText
元素的大小都是一致的,如下图所示:
对于以 Android 15 为目标平台的应用,系统现在会为 EditText
预留最小行高,以匹配指定语言区域的参考字体,如下图所示:
如果需要,您的应用可以通过将 useLocalePreferredLineHeightForMinimum
属性设置为 false
来恢复之前的行为,并且可以通过 Kotlin 和 Java 中的 setMinimumFontMetrics
API 设置自定义最小行业指标。
Câmera e mídia
O Android 15 faz as mudanças abaixo no comportamento de câmera e mídia para apps voltados para o Android 15 ou versões mais recentes.
Restrições à solicitação da seleção de áudio
Os apps direcionados ao Android 15 precisam ser o principal ou executar um
serviço em primeiro plano para solicitar a seleção de áudio. Se um app
tentar solicitar a seleção quando não atender a um desses requisitos, a
chamada retornará AUDIOFOCUS_REQUEST_FAILED
.
Saiba mais sobre a seleção de áudio em Gerenciar seleção de áudio.
Atualização das restrições não SDK
O Android 15 inclui listas atualizadas de recursos não SDK restritos interfaces baseadas na colaboração com desenvolvedores Android e nos recursos para testes internos. Antes de restringirmos interfaces não SDK, sempre que possível, garantimos que haja alternativas públicas disponíveis.
Caso seu app não seja destinado ao Android 15, algumas destas mudanças pode não afetá-lo imediatamente. No entanto, embora seja possível acessar algumas interfaces externas ao SDK dependendo do nível desejado da API do app, é possível usar qualquer ou campo sempre apresenta um alto risco de corromper o aplicativo.
Se você não souber se o app usa interfaces externas ao SDK, será possível teste seu app para descobrir. Caso seu app dependa de ambientes externos interfaces, comece a planejar uma migração para alternativas de SDK. No entanto, entendemos que alguns aplicativos têm casos de uso válidos para o uso externas ao SDK. Se você não encontrar uma alternativa para deixar de usar uma interface externa ao SDK em um recurso no app, solicite uma nova API pública.
Para saber mais sobre as mudanças dessa versão do Android, consulte Atualizações para restrições de interfaces não SDK no Android 15. Para saber mais sobre interfaces não SDK em geral, consulte Restrições para interfaces não SDK.