和先前版本一樣,Android 15 也包含可能會影響應用程式的行為變更。以下行為變更僅適用於指定 Android 15 以上版本的應用程式。如果您的應用程式指定 Android 15 以上版本,建議您視情況修改應用程式,以支援這些行為。
此外,無論應用程式的 targetSdkVersion 為何,請務必查看對所有 Android 15 應用程式有影響的行為變更清單。
核心功能
Android 15 會修改或擴充 Android 系統的各種核心功能。
前景服務異動
我们将对 Android 15 中的前台服务进行以下更改。
数据同步前台服务超时行为
Android 15 為指定 Android 15 (API 級別 35) 以上版本為目標版本的應用程式,在 dataSync 中導入新的逾時行為。這項行為也適用於新的mediaProcessing前景服務類型。
系統允許應用程式的 dataSync 服務在 24 小時內執行總共 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前景服務;由於您的應用程式在服務啟動後位於前景,因此應用程式進入背景後,您的服務剩下六小時。 - 請改用其他 API,而非
dataSync前景服務。
如果應用程式的 dataSync 前景服務在過去 24 小時內已執行 6 小時,您就無法啟動其他 dataSync 前景服務,除非使用者將應用程式移至前景 (這樣會重設計時器)。如果您嘗試啟動另一項 dataSync 前景服務,系統會擲回 ForegroundServiceStartNotAllowedException,並顯示錯誤訊息「Time limit is Of for 前景服務類型 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
mediaProcessingservices 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
mediaProcessingforeground 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
mediaProcessingforeground 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 接收器無法啟動
下列類型的前景服務:
dataSynccameramediaPlaybackphoneCallmediaProjectionmicrophone(我們已對microphone設下這項限制,自 Android 14)
如果 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
應用程式可修改勿擾模式全域狀態的時間異動
指定 Android 15 (API 級別 35) 以上版本的應用程式,將無法再變更裝置上的勿擾模式 (DND) 全域狀態或政策 (透過修改使用者設定或關閉勿擾模式)。相反地,應用程式必須提供 AutomaticZenRule,系統會將其與現有的最嚴格政策優先方案結合為全域政策。呼叫先前影響全域狀態的現有 API (setInterruptionFilter、setNotificationPolicy) 會導致建立或更新隱含的 AutomaticZenRule,而 AutomaticZenRule 的開啟和關閉狀態會根據這些 API 呼叫的呼叫週期而定。
請注意,只有在應用程式呼叫 setInterruptionFilter(INTERRUPTION_FILTER_ALL) 且預期該呼叫會停用先前由其擁有者啟用的 AutomaticZenRule 時,這項變更才會影響可觀察的行為。
OpenJDK API 變更
Android 15 将继续更新 Android 的核心库,以与最新 OpenJDK LTS 版本中的功能保持一致。
以下变更可能会影响以 Android 15(API 级别 35)为目标平台的应用的兼容性:
对字符串格式化 API 进行了更改:现在,当使用以下
String.format()和Formatter.format()API 时,对参数索引、标志、 宽度和精度的验证要求变得更加严格:String.format(String, Object[])String.format(Locale, String, Object[])Formatter.format(String, Object[])Formatter.format(Locale, String, Object[])
例如,当使用实参索引 0(格式字符串中的
%0)时,系统会抛出以下异常:IllegalFormatArgumentIndexException: Illegal format argument index = 0在这种情况下,可以使用实参索引 1(格式字符串中的
%1)来解决此问题。对
Arrays.asList(...).toArray()的组件类型进行了更改:使用Arrays.asList(...).toArray()时,生成的数组的组件类型现在是Object,而不是底层数组元素的类型。因此,以下代码会抛出ClassCastException:String[] elements = (String[]) Arrays.asList("one", "two").toArray();在这种情况下,如需在生成的 数组中保留
String作为组件类型,您可以改用Collection.toArray(Object[]):String[] elements = Arrays.asList("two", "one").toArray(new String[0]);对语言代码处理进行了更改:使用
LocaleAPI 时, 希伯来语、意第绪语和印度尼西亚语的语言代码不再转换为 其过时形式(希伯来语:iw,意第绪语:ji,印度尼西亚语:in)。 指定其中一种语言区域的语言代码时,请改用 ISO 639-1 中的代码 (希伯来语:he,意第绪语:yi,印度尼西亚语:id)。对随机 int 序列进行了更改:根据 https://bugs.openjdk.org/browse/JDK-8301574 中所做的更改,以下
Random.ints()方法现在返回的数字序列与 theRandom.nextInt()方法返回的数字序列不同:一般来说,此更改不应导致应用出现破坏性行为,但您的代码不应期望从
Random.ints()方法生成的序列与Random.nextInt()匹配。
新的 SequencedCollection API 可能会影响应用的兼容性
在应用的 build 配置中
更新 以使用
Android 15(API 级别 35)后:compileSdk
与
MutableList.removeFirst()和MutableList.removeLast()扩展函数在kotlin-stdlib中发生冲突Java 中的
List类型映射到 Kotlin 中的MutableList类型。 由于List.removeFirst()和List.removeLast()API 是在 Android 15(API 级别 35)中引入的,因此 Kotlin 编译器 会将函数调用(例如list.removeFirst())静态解析为 新的ListAPI,而不是kotlin-stdlib中的扩展函数。如果使用
compileSdk设置为35且minSdk设置为34或更低版本重新编译应用,然后在 Android 14 及更低版本上运行该应用,则会抛出运行时错误:java.lang.NoSuchMethodError: No virtual method removeFirst()Ljava/lang/Object; in class Ljava/util/ArrayList;Android Gradle 插件中现有的
NewApilint 选项可以捕获这些新的 API 用法。./gradlew lintMainActivity.kt:41: Error: Call requires API level 35 (current min is 34): java.util.List#removeFirst [NewApi] list.removeFirst()如需修复运行时异常和 lint 错误,可以将
removeFirst()和removeLast()函数调用分别替换为 Kotlin 中的removeAt(0)和removeAt(list.lastIndex)。如果您使用的是 Android Studio Ladybug | 2024.1.3 或更高版本,它还为这些错误提供了快速修复选项。如果 lint 选项已停用,请考虑移除
@SuppressLint("NewApi")和lintOptions { disable 'NewApi' }。与 Java 中的其他方法发生冲突
新的方法已添加到现有类型中,例如,
List和Deque。这些新方法可能与其他接口和类中具有相同名称和实参类型的方法不兼容。如果方法签名冲突且不兼容,javac编译器会输出 build 时错误。例如:错误示例 1:
javac MyList.javaMyList.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 List错误示例 2:
javac MyList.javaMyList.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 error错误示例 3:
javac MyList.javaMyList.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 error如需修复这些 build 错误,实现这些接口的类应使用兼容的返回值类型替换该方法。例如:
@Override public Object getFirst() { return List.super.getFirst(); }
安全性
Android 15 包含多項變更,可提升系統安全性,協助保護應用程式和使用者免受惡意應用程式侵害。
受限的 TLS 版本
Android 15 restricts the usage of TLS versions 1.0 and 1.1. These versions had previously been deprecated in Android, but are now disallowed for apps targeting Android 15.
安全啟動背景活動
Android 15 新增了多項變更,可防止惡意背景應用程式將其他應用程式帶到前景、提升權限及濫用使用者互動,進而保護使用者免受惡意應用程式侵害,並讓使用者進一步控管裝置。自 Android 10 (API 級別 29) 起,系統會限制啟動背景活動。
其他變更
- 將
PendingIntent建立者變更為預設封鎖背景活動啟動程序。這有助於防止應用程式意外建立PendingIntent,避免惡意人士濫用。 - 除非
PendingIntent傳送者允許,否則請勿將應用程式移至前景。這項異動旨在防止惡意應用程式濫用在背景啟動活動的功能。根據預設,應用程式不得將工作堆疊帶到前景,除非建立者允許啟動背景活動的權限,或傳送者具有啟動背景活動的權限。 - 控制工作堆疊頂端活動完成工作的方式。如果頂端活動完成工作,Android 會返回上次啟用的工作。此外,如果非頂端活動完成任務,Android 會返回主畫面,不會封鎖這個非頂端活動的完成作業。
- 防止其他應用程式在您的工作階段中啟動任意活動。這項異動可防止惡意應用程式建立看似來自其他應用程式的活動,藉此網路釣魚。
- 禁止將非可見視窗納入背景活動啟動程序。這樣一來,惡意應用程式就無法濫用背景活動啟動功能,向使用者顯示不當或惡意內容。
更安全的意圖
Android 15 针对 intent 引入了 StrictMode。
如需查看有关 Intent 使用违规行为的详细日志,请使用以下方法:
Kotlin
fun onCreate() { StrictMode.setVmPolicy(VmPolicy.Builder() .detectUnsafeIntentLaunch() .build() ) }
Java
public void onCreate() { StrictMode.setVmPolicy(new VmPolicy.Builder() .detectUnsafeIntentLaunch() .build()); }
使用者體驗和系統 UI
Android 15 包含一些變更,旨在打造更一致、直覺的使用者體驗。
視窗插邊變更
Android 15 中与窗口内边距相关的两项变更:默认强制执行边到边,此外还有配置变更,例如系统栏的默认配置。
邊緣到邊緣強制執行
如果应用以 Android 15(API 级别 35)为目标平台,则在搭载 Android 15 的设备上默认以无边框显示。
这是一项重大变更,可能会对应用的界面产生不利影响。这些变更会影响以下界面区域:
- 手势提示条导航栏
- 默认透明。
- 底部偏移已停用,因此除非应用了边衬区,否则内容会绘制在系统导航栏后面。
setNavigationBarColor和R.attr#navigationBarColor已弃用,不会影响手势导航。setNavigationBarContrastEnforced和R.attr#navigationBarContrastEnforced仍不会影响手势导航。
- 三按钮导航
- 默认情况下,不透明度设置为 80%,颜色可能与窗口背景颜色一致。
- 底部偏移已停用,因此除非应用了边衬区,否则内容会绘制在系统导航栏后面。
setNavigationBarColor和R.attr#navigationBarColor默认设置为与窗口背景颜色一致。窗口背景必须是颜色可绘制对象,才能应用此默认设置。此 API 已弃用,但仍会影响三按钮导航。setNavigationBarContrastEnforced和R.attr#navigationBarContrastEnforced默认值为 true,这会在三按钮导航中添加 80% 不透明的背景。
- 状态栏
- 默认透明。
- 顶部偏移已停用,因此除非应用了边衬区,否则内容会绘制在状态栏后面。
setStatusBarColor和R.attr#statusBarColor已弃用,不会影响 Android 15。setStatusBarContrastEnforced和R.attr#statusBarContrastEnforced已弃用,但仍会影响 Android 15。
- 刘海屏
- 非浮动窗口的
layoutInDisplayCutoutMode必须为LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS。SHORT_EDGES、NEVER和DEFAULT会被解读为ALWAYS,这样用户就不会看到因显示屏刘海屏而产生的黑条,并且会以无边框显示。
- 非浮动窗口的
以下示例展示了应用在以 Android 15(API 级别 35)为目标平台之前和之后,以及在应用边衬区之前和之后的效果。此示例并不全面,在 Android Auto 上可能会显示不同的效果。
如果您的应用已以无边框显示,需要检查哪些内容
如果您的应用已以 无边框 显示并应用了边衬区,则大部分情况下 不会受到影响,但在以下情形中除外。不过,即使您认为自己不会受到影响,我们也建议您测试应用。
- 您有一个非浮动窗口,例如使用
SHORT_EDGES、NEVER或DEFAULT而不是LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS的Activity。如果您的应用在启动时崩溃,可能是因为启动画面所致。您可以将 核心 启动画面 依赖项升级到 1.2.0-alpha01 或更高版本,也可以设置window.attributes.layoutInDisplayCutoutMode = WindowManager.LayoutInDisplayCutoutMode.always。 - 可能存在流量较低的屏幕,其界面被遮盖。验证这些访问量较少的屏幕是否没有被遮盖的界面。流量较低的屏幕包括:
- 新手入门或登录屏幕
- “设置”页面
如果您的应用尚未以无边框显示,需要检查哪些内容
如果您的应用尚未以无边框显示,则很可能会受到影响。除了已以无边框显示的应用的情形之外,您还应考虑以下情况:
- 如果您的应用在 Compose 中使用了 Material 3 组件 (
androidx.compose.material3),例如TopAppBar、BottomAppBar和NavigationBar,这些组件可能不会 受到影响,因为它们会自动处理边衬区。 - 如果应用使用的是 Compose 中的 Material 2 组件 (
androidx.compose.material),这些组件 本身并不会自动处理边衬区。不过,您可以获得边衬区的访问权限,然后手动应用边衬区。在 androidx.compose.material 1.6.0 及更高版本中,使用windowInsets参数可为BottomAppBar、TopAppBar、BottomNavigation和NavigationRail手动应用边衬区。 同样,对于Scaffold,请使用contentWindowInsets参数。 - 如果应用使用了视图和 Material 组件
(
com.google.android.material),则大多数基于视图的 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#enforceStatusBarContrastR.attr#navigationBarColor(适用于三按钮导航,alpha 为 80%)Window#isStatusBarContrastEnforcedWindow#setNavigationBarColor(适用于三按钮导航,alpha 为 80%)Window#setStatusBarContrastEnforced
以下 API 已弃用并已停用:
R.attr#navigationBarColor(适用于手势导航)R.attr#navigationBarDividerColorR.attr#statusBarColorWindow#setDecorFitsSystemWindowsWindow#getNavigationBarColorWindow#getNavigationBarDividerColorWindow#getStatusBarColorWindow#setNavigationBarColor(适用于手势导航)Window#setNavigationBarDividerColorWindow#setStatusBarColor
穩定設定
If your app targets Android 15 (API level 35) or higher, Configuration no
longer excludes the system bars. If you use the screen size in the
Configuration class for layout calculation, you should replace it with better
alternatives like an appropriate ViewGroup, WindowInsets, or
WindowMetricsCalculator depending on your need.
Configuration has been available since API 1. It is typically obtained from
Activity.onConfigurationChanged. It provides information like window density,
orientation, and sizes. One important characteristic about the window sizes
returned from Configuration is that it previously excluded the system bars.
The configuration size is typically used for resource selection, such as
/res/layout-h500dp, and this is still a valid use case. However, using it for
layout calculation has always been discouraged. If you do so, you should move
away from it now. You should replace the use of Configuration with something
more suitable depending on your use case.
If you use it to calculate the layout, use an appropriate ViewGroup, such as
CoordinatorLayout or ConstraintLayout. If you use it to determine the height
of the system navbar, use WindowInsets. If you want to know the current size
of your app window, use computeCurrentWindowMetrics.
The following list describes the fields affected by this change:
Configuration.screenWidthDpandscreenHeightDpsizes no longer exclude the system bars.Configuration.smallestScreenWidthDpis indirectly affected by changes toscreenWidthDpandscreenHeightDp.Configuration.orientationis indirectly affected by changes toscreenWidthDpandscreenHeightDpon close-to-square devices.Display.getSize(Point)is indirectly affected by the changes inConfiguration. This was deprecated beginning in API level 30.Display.getMetrics()has already worked like this since API level 33.
elegantTextHeight 屬性預設為 true
对于以 Android 15(API 级别 35)为目标平台的应用,elegantTextHeight TextView 属性默认会变为 true,将默认使用的紧凑字体替换为一些具有较大垂直测量的脚本,使其更易于阅读。紧凑字体旨在防止布局中断;Android 13(API 级别 33)允许文本布局利用 fallbackLineSpacing 属性拉伸垂直高度,从而防止许多此类中断。
在 Android 15 中,系统中仍保留了紧凑字体,因此您的应用可以将 elegantTextHeight 设置为 false 以获得与之前相同的行为,但即将发布的版本不太可能支持此字体。因此,如果您的应用支持以下脚本:阿拉伯语、老挝语、缅甸语、泰米尔语、古吉拉特语、卡纳达语、马拉雅拉姆语、奥里亚语、泰卢固语或泰语,请将 elegantTextHeight 设置为 true 以测试您的应用。
elegantTextHeight 行为。
elegantTextHeight 行为。複雜字母形狀的 TextView 寬度變化
在舊版 Android 中,部分草書字型或形狀複雜的語言,可能會在前一個或下一個字元的區域中繪製字母。在某些情況下,這類信件會在開頭或結尾處遭到裁切。自 Android 15 起,TextView 會分配寬度,以便繪製這類字母的空間,並允許應用程式要求左側額外的邊框間距,以防裁剪。
由於這項變更會影響 TextView 決定寬度的做法,因此如果應用程式指定 Android 15 (API 級別 35) 以上版本,TextView 預設會分配更多寬度。您可以在 TextView 上呼叫 setUseBoundsForWidth API,啟用或停用這項行為。
由於新增左邊邊框間距可能會導致現有版面配置不對齊,因此即使應用程式指定 Android 15 以上版本,也不會預設新增邊框間距。不過,您可以呼叫 setShiftDrawingOffsetForStartOverhang 新增額外的邊框間距,避免發生裁剪情形。
以下範例說明這些變更如何改善部分字型和語言的文字版面配置。
<TextView android:fontFamily="cursive" android:text="java" />
<TextView android:fontFamily="cursive" android:text="java" android:useBoundsForWidth="true" android:shiftDrawingOffsetForStartOverhang="true" />
<TextView android:text="คอมพิวเตอร์" />
<TextView android:text="คอมพิวเตอร์" android:useBoundsForWidth="true" android:shiftDrawingOffsetForStartOverhang="true" />
EditText 的預設行高會因語言代碼而異
在 Android 先前版本中,文字版面配置會拉伸文字高度,以符合與目前語言代碼相符的字型行高。舉例來說,如果內容是日文,由於日文字型的行高略大於拉丁字型,因此文字高度會稍微變高。不過,儘管行高有這些差異,EditText 元素的大小仍保持一致,不受使用語言代碼影響,如下圖所示:
EditText 元素,可包含英文 (en)、日文 (ja) 和緬甸文 (my) 的文字。EditText 的高度相同,即使這些語言的行高不同。針對指定 Android 15 (API 級別 35) 的應用程式,現在會為 EditText 保留最小行高,以便與指定語言代碼的參考字型相符,如以下圖片所示:
EditText 元素,可包含英文 (en)、日文 (ja) 和緬甸文 (my) 的文字。EditText 的高度現在包含空格,可容納這些語言字型預設的行高。如有需要,應用程式可以將 useLocalePreferredLineHeightForMinimum 屬性指定為 false,藉此還原先前的行為,並使用 Kotlin 和 Java 中的 setMinimumFontMetrics API 設定自訂的垂直最小指標。
相機和媒體
Android 15 對指定 Android 15 以上版本的應用程式,進行了下列攝影機和媒體行為變更。
要求音訊焦點的限制
以 Android 15(API 级别 35)为目标平台的应用必须是顶部应用或正在运行前台服务,才能请求音频焦点。如果应用在未满足上述任一要求的情况下尝试请求焦点,调用将返回 AUDIOFOCUS_REQUEST_FAILED。
如需详细了解音频焦点,请参阅管理音频焦点。
更新非 SDK 限制
基於與 Android 開發人員合作及最新的內部測試,Android 15 包含更新後的受限制非 SDK 介面清單。在限制非 SDK 介面之前,我們盡可能確保公開替代方案的可得性。
如果您的應用程式並不是以 Android 15 為目標版本,則此處所述的某些變更可能不會立即對您造成影響。不過,應用程式視目標 API 級別而定,可能可以存取某些非 SDK 介面,但使用任何非 SDK 方法或欄位時,應用程式停止運作的風險極高。
如果不確定應用程式是否使用非 SDK 介面,可測試應用程式以便確認。如果應用程式仰賴非 SDK 介面,則應開始規劃遷移至 SDK 替代方案。我們瞭解有些應用程式可使用非 SDK 介面運作。如果您除了為應用程式中的某個功能使用非 SDK 介面外,已別無他法,則應要求新的公用 API。
如要進一步瞭解此 Android 版本中的變更,請參閱「Android 15 的非 SDK 介面限制更新內容」。如要進一步瞭解非 SDK 介面的一般資訊,請參閱「非 SDK 介面的限制」。