Wie bei früheren Versionen enthält Android 15 Verhaltensänderungen, die sich auf Ihre App auswirken können. Die folgenden Verhaltensänderungen gelten ausschließlich für Apps, die auf Android 15 oder höher ausgerichtet sind. Wenn Ihre App auf Android 15 oder höher ausgerichtet ist, sollten Sie sie entsprechend anpassen.
Sehen Sie sich auch die Liste der Verhaltensänderungen an, die sich auf alle Apps auswirken, die unter Android 15 ausgeführt werden, unabhängig vom targetSdkVersion
Ihrer App.
Hauptfunktion
In Android 15 werden verschiedene Kernfunktionen des Android-Systems geändert oder erweitert.
Änderungen an Vordergrunddiensten
We are making the following changes to foreground services with Android 15.
- Data sync foreground service timeout behavior
- New media processing foreground service type
- Restrictions on
BOOT_COMPLETED
broadcast receivers launching foreground services - Restrictions on starting foreground services while an app holds the
SYSTEM_ALERT_WINDOW
permission
Data sync foreground service timeout behavior
Android 15 introduces a new timeout behavior to dataSync
for apps targeting
Android 15 (API level 35) or higher. This behavior also applies to the new
mediaProcessing
foreground service type.
The system permits an app's dataSync
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()
. When Service.onTimeout()
is called, the
service is no longer considered a foreground service. 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 dataSync did not stop within its timeout: [component name]"
To avoid problems with this behavior change, you can do one or more 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
dataSync
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
dataSync
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
dataSync
foreground service, use an alternative API.
If your app's dataSync
foreground services have run for 6 hours in the last
24, you cannot start another dataSync
foreground service unless the user
has brought your app to the foreground (which resets the timer). If you try to
start another dataSync
foreground service, the system throws
ForegroundServiceStartNotAllowedException
with an error message like "Time limit already exhausted for foreground service
type dataSync".
Testing
To test your app's behavior, you can enable data sync 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 data_sync_fgs_timeout_duration duration-in-milliseconds
New media processing foreground service type
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
Restrictions on BOOT_COMPLETED
broadcast receivers launching foreground services
There are new restrictions on BOOT_COMPLETED
broadcast receivers launching
foreground services. BOOT_COMPLETED
receivers are not allowed to launch the
following types of foreground services:
dataSync
camera
mediaPlayback
phoneCall
mediaProjection
microphone
(this restriction has been in place formicrophone
since Android 14)
If a BOOT_COMPLETED
receiver tries to launch any of those types of foreground
services, the system throws ForegroundServiceStartNotAllowedException
.
Testing
To test your app's behavior, you can enable these new restrictions even if your
app is not targeting Android 15 (as long as the app is running on an Android 15
device). Run the following adb
command:
adb shell am compat enable FGS_BOOT_COMPLETED_RESTRICTIONS your-package-name
To send a BOOT_COMPLETED
broadcast without restarting the device,
run the following adb
command:
adb shell am broadcast -a android.intent.action.BOOT_COMPLETED your-package-name
Restrictions on starting foreground services while an app holds the SYSTEM_ALERT_WINDOW
permission
Bisher konnte eine App mit der Berechtigung SYSTEM_ALERT_WINDOW
einen Dienst im Vordergrund starten, auch wenn sie sich gerade im Hintergrund befand (wie unter Ausnahmen von Einschränkungen beim Starten im Hintergrund beschrieben).
Wenn eine App auf Android 15 ausgerichtet ist, ist diese Ausnahme jetzt eingeschränkter. Die App benötigt jetzt die Berechtigung SYSTEM_ALERT_WINDOW
und auch ein sichtbares Overlay-Fenster. Das bedeutet, dass die App zuerst ein TYPE_APPLICATION_OVERLAY
-Fenster öffnen und das Fenster sichtbar sein muss, bevor Sie einen Dienst im Vordergrund starten.
Wenn Ihre App versucht, einen Dienst im Vordergrund aus dem Hintergrund zu starten, ohne diese neuen Anforderungen zu erfüllen (und keine andere Ausnahme vorliegt), löst das System ForegroundServiceStartNotAllowedException
aus.
Wenn Ihre App die Berechtigung SYSTEM_ALERT_WINDOW
deklariert und Dienste im Vordergrund aus dem Hintergrund startet, kann sich diese Änderung auf Ihre App auswirken. Wenn deine App eine ForegroundServiceStartNotAllowedException
erhält, prüfe die Reihenfolge der Vorgänge in deiner App und achte darauf, dass deine App bereits ein aktives Overlay-Fenster hat, bevor sie versucht, einen Dienst im Vordergrund im Hintergrund zu starten. Du kannst mit View.getWindowVisibility()
prüfen, ob dein Overlay-Fenster gerade sichtbar ist. Du kannst auch View.onWindowVisibilityChanged()
überschreiben, um benachrichtigt zu werden, wenn sich die Sichtbarkeit ändert.
Testen
Um das Verhalten deiner App zu testen, kannst du diese neuen Einschränkungen auch dann aktivieren, wenn deine App nicht auf Android 15 ausgerichtet ist, solange sie auf einem Android 15-Gerät ausgeführt wird. Wenn Sie diese neuen Einschränkungen für den Start von Diensten im Vordergrund aus dem Hintergrund aktivieren möchten, führen Sie den folgenden adb
-Befehl aus:
adb shell am compat enable FGS_SAW_RESTRICTIONS your-package-name
Änderungen daran, wann Apps den globalen Status des Modus „Bitte nicht stören“ ändern können
Apps that target Android 15 (API level 35) and higher can no longer change the
global state or policy of Do Not Disturb (DND) on a device (either by modifying
user settings, or turning off DND mode). Instead, apps must contribute an
AutomaticZenRule
, which the system combines into a global policy with the
existing most-restrictive-policy-wins scheme. Calls to existing APIs that
previously affected global state (setInterruptionFilter
,
setNotificationPolicy
) result in the creation or update of an implicit
AutomaticZenRule
, which is toggled on and off depending on the call-cycle of
those API calls.
Note that this change only affects observable behavior if the app is calling
setInterruptionFilter(INTERRUPTION_FILTER_ALL)
and expects that call to
deactivate an AutomaticZenRule
that was previously activated by their owners.
OpenJDK-API-Änderungen
Android 15 continues the work of refreshing Android's core libraries to align with the features in the latest OpenJDK LTS releases.
Some of these changes can affect app compatibility for apps targeting Android 15 (API level 35):
Changes to string formatting APIs: Validation of argument index, flags, width, and precision are now more strict when using the following
String.format()
andFormatter.format()
APIs:String.format(String, Object[])
String.format(Locale, String, Object[])
Formatter.format(String, Object[])
Formatter.format(Locale, String, Object[])
For example, the following exception is thrown when an argument index of 0 is used (
%0
in the format string):IllegalFormatArgumentIndexException: Illegal format argument index = 0
In this case, the issue can be fixed by using an argument index of 1 (
%1
in the format string).Changes to component type of
Arrays.asList(...).toArray()
: When usingArrays.asList(...).toArray()
, the component type of the resulting array is now anObject
—not the type of the underlying array's elements. So the following code throws aClassCastException
:String[] elements = (String[]) Arrays.asList("one", "two").toArray();
For this case, to preserve
String
as the component type in the resulting array, you could useCollection.toArray(Object[])
instead:String[] elements = Arrays.asList("two", "one").toArray(new String[0]);
Changes to language code handling: When using the
Locale
API, language codes for Hebrew, Yiddish, and Indonesian are no longer converted to their obsolete forms (Hebrew:iw
, Yiddish:ji
, and Indonesian:in
). When specifying the language code for one of these locales, use the codes from ISO 639-1 instead (Hebrew:he
, Yiddish:yi
, and Indonesian:id
).Changes to random int sequences: Following the changes made in https://bugs.openjdk.org/browse/JDK-8301574, the following
Random.ints()
methods now return a different sequence of numbers than theRandom.nextInt()
methods do:Generally, this change shouldn't result in app-breaking behavior, but your code shouldn't expect the sequence generated from
Random.ints()
methods to matchRandom.nextInt()
.
The new SequencedCollection
API can affect your app's compatibility
after you update compileSdk
in your app's build configuration to use
Android 15 (API level 35):
Collision with
MutableList.removeFirst()
andMutableList.removeLast()
extension functions inkotlin-stdlib
The
List
type in Java is mapped to theMutableList
type in Kotlin. Because theList.removeFirst()
andList.removeLast()
APIs have been introduced in Android 15 (API level 35), the Kotlin compiler resolves function calls, for examplelist.removeFirst()
, statically to the newList
APIs instead of to the extension functions inkotlin-stdlib
.If an app is re-compiled with
compileSdk
set to35
andminSdk
set to34
or lower, and then the app is run on Android 14 and lower, a runtime error is thrown:java.lang.NoSuchMethodError: No virtual method removeFirst()Ljava/lang/Object; in class Ljava/util/ArrayList;
The existing
NewApi
lint option in Android Gradle Plugin can catch these new API usages../gradlew lint
MainActivity.kt:41: Error: Call requires API level 35 (current min is 34): java.util.List#removeFirst [NewApi] list.removeFirst()To fix the runtime exception and lint errors, the
removeFirst()
andremoveLast()
function calls can be replaced withremoveAt(0)
andremoveAt(list.lastIndex)
respectively in Kotlin. If you're using Android Studio Ladybug | 2024.1.3 or higher, it also provides a quick fix option for these errors.Consider removing
@SuppressLint("NewApi")
andlintOptions { disable 'NewApi' }
if the lint option has been disabled.Collision with other methods in Java
New methods have been added into the existing types, for example,
List
andDeque
. These new methods might not be compatible with the methods with the same name and argument types in other interfaces and classes. In the case of a method signature collision with incompatibility, thejavac
compiler outputs a build-time error. For example:Example error 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 ListExample error 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 errorExample error 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 errorTo fix these build errors, the class implementing these interfaces should override the method with a compatible return type. For example:
@Override public Object getFirst() { return List.super.getFirst(); }
Sicherheit
Android 15 enthält Änderungen, die die Systemsicherheit fördern und dazu beitragen, Apps und Nutzer vor schädlichen Apps zu schützen.
Eingeschränkte TLS-Versionen
Unter Android 15 ist die Verwendung der TLS-Versionen 1.0 und 1.1 eingeschränkt. Diese Versionen wurden bereits in Android eingestellt, sind aber jetzt für Apps, die auf Android 15 ausgerichtet sind, nicht mehr zulässig.
Sichere Starts von Hintergrundaktivitäten
Android 15 protects users from malicious apps and gives them more control over their devices by adding changes that prevent malicious background apps from bringing other apps to the foreground, elevating their privileges, and abusing user interaction. Background activity launches have been restricted since Android 10 (API level 29).
Other changes
In addition to the restriction for UID matching, these other changes are also included:
- Change
PendingIntent
creators to block background activity launches by default. This helps prevent apps from accidentally creating aPendingIntent
that could be abused by malicious actors. - Don't bring an app to the foreground unless the
PendingIntent
sender allows it. This change aims to prevent malicious apps from abusing the ability to start activities in the background. By default, apps are not allowed to bring the task stack to the foreground unless the creator allows background activity launch privileges or the sender has background activity launch privileges. - Control how the top activity of a task stack can finish its task. If the top activity finishes a task, Android will go back to whichever task was last active. Moreover, if a non-top activity finishes its task, Android will go back to the home screen; it won't block the finish of this non-top activity.
- Prevent launching arbitrary activities from other apps into your own task. This change prevents malicious apps from phishing users by creating activities that appear to be from other apps.
- Block non-visible windows from being considered for background activity launches. This helps prevent malicious apps from abusing background activity launches to display unwanted or malicious content to users.
Sicherere Intents
Android 15 führt neue optionale Sicherheitsmaßnahmen ein, um Intents sicherer zu machen und robuster. Mit diesen Änderungen sollen potenzielle Sicherheitslücken und Missbrauch von Intents verhindert werden, die von schädlichen Apps ausgenutzt werden können. Die Sicherheit von Intents wurde in Android 15 in zwei Hauptbereichen verbessert:
- Abgleich von Ziel-Intent-Filtern:Intents, die auf bestimmte Komponenten abzielen, müssen genau mit den Intent-Filterspezifikationen des Ziels übereinstimmen. Wenn Sie eine die Aktivität einer anderen App starten möchten, muss die Ziel-Intent-Komponente mit den deklarierten Intent-Filtern der Empfangsaktivität übereinstimmen.
- Intents müssen Aktionen haben: Intents ohne Aktion werden nicht mehr mit Intent-Filtern abgeglichen. Dies bedeutet, dass Intents, die zum Starten von Aktivitäten oder muss eine klar definierte Aktion beinhalten.
Wenn Sie prüfen möchten, wie Ihre App auf diese Änderungen reagiert, verwenden Sie StrictMode
in Ihrer App. Wenn Sie detaillierte Protokolle zu Verstößen bei der Nutzung von Intent
sehen möchten, fügen Sie die folgende Methode hinzu:
Kotlin
fun onCreate() { StrictMode.setVmPolicy(VmPolicy.Builder() .detectUnsafeIntentLaunch() .build() ) }
Java
public void onCreate() { StrictMode.setVmPolicy(new VmPolicy.Builder() .detectUnsafeIntentLaunch() .build()); }
Nutzerfreundlichkeit und System-UI
Android 15 enthält einige Änderungen, die für eine einheitlichere und intuitivere User Experience sorgen sollen.
Änderungen am Fenstereinsatz
In Android 15 gibt es zwei Änderungen im Zusammenhang mit Fenstereinblendungen: Vollbild wird standardmäßig erzwungen. Außerdem gibt es Konfigurationsänderungen, z. B. an der Standardkonfiguration der Systemleisten.
Edge-to-Edge-Erzwingung
Apps werden auf Geräten mit Android 15 standardmäßig randlos angezeigt, wenn die App auf Android 15 (API‑Level 35) ausgerichtet ist.

Dies ist eine schwerwiegende Änderung, die sich negativ auf die Benutzeroberfläche Ihrer App auswirken kann. Die Änderungen betreffen die folgenden Bereiche der Benutzeroberfläche:
- Navigationsleiste mit Gesten-Handle
- Standardmäßig transparent.
- Der untere Offset ist deaktiviert, sodass Inhalte hinter der Systemnavigationsleiste gerendert werden, sofern keine Insets angewendet werden.
setNavigationBarColor
undR.attr#navigationBarColor
sind veraltet und haben keine Auswirkungen auf die Bedienung über Gesten.setNavigationBarContrastEnforced
undR.attr#navigationBarContrastEnforced
haben weiterhin keine Auswirkungen auf die Gestennavigation.
- Bedienung über 3 Schaltflächen
- Die Deckkraft ist standardmäßig auf 80% eingestellt. Die Farbe entspricht möglicherweise dem Fensterhintergrund.
- Der untere Offset ist deaktiviert, sodass Inhalte hinter der Systemnavigationsleiste gerendert werden, sofern keine Insets angewendet werden.
setNavigationBarColor
undR.attr#navigationBarColor
sind standardmäßig so eingestellt, dass sie dem Fensterhintergrund entsprechen. Der Fensterhintergrund muss ein Farb-Drawable sein, damit diese Standardeinstellung angewendet wird. Diese API ist zwar eingestellt, wirkt sich aber weiterhin auf die 3-Tasten-Navigation aus.setNavigationBarContrastEnforced
undR.attr#navigationBarContrastEnforced
sind standardmäßig auf „true“ gesetzt. Dadurch wird bei der Bedienung über 3 Schaltflächen ein zu 80% undurchsichtiger Hintergrund hinzugefügt.
- Statusleiste
- Standardmäßig transparent.
- Der obere Offset ist deaktiviert, sodass Inhalte hinter der Statusleiste gerendert werden, sofern keine Insets angewendet werden.
setStatusBarColor
undR.attr#statusBarColor
sind veraltet und haben keine Auswirkungen auf Android 15.setStatusBarContrastEnforced
undR.attr#statusBarContrastEnforced
sind veraltet, haben aber weiterhin Auswirkungen auf Android 15.
- Displayausschnitt
layoutInDisplayCutoutMode
von nicht schwebenden Fenstern mussLAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
sein.SHORT_EDGES
,NEVER
undDEFAULT
werden alsALWAYS
interpretiert, damit Nutzer keinen schwarzen Balken sehen, der durch den Ausschnitt im Display verursacht wird, und das Bild von Kante zu Kante angezeigt wird.
Im folgenden Beispiel wird eine App vor und nach der Ausrichtung auf Android 15 (API‑Level 35) sowie vor und nach dem Anwenden von Einsätzen gezeigt. Dieses Beispiel ist nicht vollständig. Die Darstellung kann in Android Auto anders aussehen.



Was Sie prüfen sollten, wenn Ihre App bereits Edge-to-Edge-Darstellung unterstützt
Wenn Ihre App bereits randlos ist und Insets verwendet, sind Sie größtenteils nicht betroffen, außer in den folgenden Szenarien. Auch wenn Sie nicht davon ausgehen, dass Ihre App betroffen ist, empfehlen wir Ihnen, sie zu testen.
- Sie haben ein nicht schwebendes Fenster, z. B. ein
Activity
, dasSHORT_EDGES
,NEVER
oderDEFAULT
anstelle vonLAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS
verwendet. Wenn Ihre App beim Starten abstürzt, liegt das möglicherweise an Ihrem Splashscreen. Sie können entweder die Abhängigkeit core splashscreen auf 1.2.0-alpha01 oder höher aktualisieren oderwindow.attributes.layoutInDisplayCutoutMode = WindowManager.LayoutInDisplayCutoutMode.always
festlegen. - Es kann sein, dass es weniger besuchte Bildschirme mit verdeckter Benutzeroberfläche gibt. Prüfen Sie, ob die Benutzeroberfläche auf diesen weniger besuchten Bildschirmen verdeckt ist. Bildschirme mit geringerem Traffic sind unter anderem:
- Einrichtungs- oder Anmeldebildschirme
- Einstellungsseiten
Was Sie prüfen sollten, wenn Ihre App noch nicht randlos ist
Wenn Ihre App noch nicht randlos ist, sind Sie höchstwahrscheinlich betroffen. Zusätzlich zu den Szenarien für Apps, die bereits Edge-to-Edge-Darstellung unterstützen, sollten Sie Folgendes berücksichtigen:
- Wenn Ihre App Material 3-Komponenten (
androidx.compose.material3
) in Compose verwendet, z. B.TopAppBar
,BottomAppBar
undNavigationBar
, sind diese Komponenten wahrscheinlich nicht betroffen, da sie Insets automatisch verarbeiten. - Wenn in Ihrer App Material 2-Komponenten (
androidx.compose.material
) in Compose verwendet werden, werden Insets nicht automatisch von diesen Komponenten verarbeitet. Sie können jedoch auf die Insets zugreifen und sie manuell anwenden. In androidx.compose.material 1.6.0 und höher können Sie den ParameterwindowInsets
verwenden, um die Insets manuell fürBottomAppBar
,TopAppBar
,BottomNavigation
undNavigationRail
anzuwenden. Verwenden Sie den ParametercontentWindowInsets
fürScaffold
. - Wenn in Ihrer App Ansichten und Material-Komponenten (
com.google.android.material
) verwendet werden, werden die meisten ansichtsbasierte Material-Komponenten wieBottomNavigationView
,BottomAppBar
,NavigationRailView
oderNavigationView
mit Insets gerendert. Sie müssen also nichts weiter tun. Wenn SieAppBarLayout
verwenden, müssen Sie jedochandroid:fitsSystemWindows="true"
hinzufügen. - Bei benutzerdefinierten Composables müssen Sie die Insets manuell als Padding anwenden. Wenn sich Ihre Inhalte in einem
Scaffold
befinden, können Sie Insets mit denScaffold
-Padding-Werten verwenden. Andernfalls wenden Sie den Innenabstand mit einem derWindowInsets
an. - Wenn Ihre App Ansichten und
BottomSheet
-,SideSheet
- oder benutzerdefinierte Container verwendet, wenden Sie den Innenabstand mitViewCompat.setOnApplyWindowInsetsListener
an. Wenden Sie fürRecyclerView
mit diesem Listener einen Innenabstand an und fügen Sie auchclipToPadding="false"
hinzu.
Prüfen, ob Ihre App einen benutzerdefinierten Schutz im Hintergrund bieten muss
Wenn Ihre App einen benutzerdefinierten Hintergrundschutz für die 3‑Tasten-Navigation oder die Statusleiste bieten muss, sollte sie ein Composable oder eine Ansicht hinter der Systemleiste platzieren. Verwenden Sie dazu WindowInsets.Type#tappableElement()
, um die Höhe der 3‑Tasten-Navigationsleiste oder WindowInsets.Type#statusBars
abzurufen.
Weitere Ressourcen für die Darstellung von Inhalten von Rand zu Rand
Weitere Informationen zum Anwenden von Insets finden Sie in den Leitfäden Edge-to-Edge-Ansichten und Edge-to-Edge Compose.
Eingestellte APIs
Die folgenden APIs sind veraltet, aber nicht deaktiviert:
R.attr#enforceStatusBarContrast
R.attr#navigationBarColor
(für die Bedienung über 3 Schaltflächen, mit 80 % Alpha)Window#isStatusBarContrastEnforced
Window#setNavigationBarColor
(für die Bedienung über 3 Schaltflächen, mit 80% Alpha)Window#setStatusBarContrastEnforced
Die folgenden APIs sind eingestellt und deaktiviert:
R.attr#navigationBarColor
(für die Bedienung über Gesten)R.attr#navigationBarDividerColor
R.attr#statusBarColor
Window#setDecorFitsSystemWindows
Window#getNavigationBarColor
Window#getNavigationBarDividerColor
Window#getStatusBarColor
Window#setNavigationBarColor
(für die Bedienung über Gesten)Window#setNavigationBarDividerColor
Window#setStatusBarColor
Stabile Konfiguration
Wenn Ihre App auf Android 15 (API‑Level 35) oder höher ausgerichtet ist, werden die Systemleisten nicht mehr durch Configuration
ausgeschlossen. Wenn Sie die Bildschirmgröße in der Klasse Configuration
für die Layoutberechnung verwenden, sollten Sie sie je nach Bedarf durch bessere Alternativen wie ein geeignetes ViewGroup
, WindowInsets
oder WindowMetricsCalculator
ersetzen.
Configuration
ist seit API 1 verfügbar. Sie wird in der Regel aus Activity.onConfigurationChanged
abgerufen. Sie enthält Informationen wie Fensterdichte, Ausrichtung und Größen. Ein wichtiges Merkmal der von Configuration
zurückgegebenen Fenstergrößen ist, dass die Systemleisten zuvor ausgeschlossen wurden.
Die Konfigurationsgröße wird in der Regel für die Ressourcenauswahl verwendet, z. B. /res/layout-h500dp
. Das ist weiterhin ein gültiger Anwendungsfall. Die Verwendung für die Layoutberechnung wurde jedoch immer abgelehnt. Wenn das der Fall ist, sollten Sie jetzt davon Abstand nehmen. Sie sollten die Verwendung von Configuration
je nach Anwendungsfall durch etwas Geeigneteres ersetzen.
Wenn Sie sie zum Berechnen des Layouts verwenden, nutzen Sie eine geeignete ViewGroup
, z. B. CoordinatorLayout
oder ConstraintLayout
. Wenn Sie damit die Höhe der Systemnavigationsleiste ermitteln möchten, verwenden Sie WindowInsets
. Wenn Sie die aktuelle Größe Ihres App-Fensters wissen möchten, verwenden Sie computeCurrentWindowMetrics
.
In der folgenden Liste werden die Felder beschrieben, die von dieser Änderung betroffen sind:
- Bei den Größen
Configuration.screenWidthDp
undscreenHeightDp
werden die Systemleisten nicht mehr ausgeschlossen. Configuration.smallestScreenWidthDp
ist indirekt von Änderungen anscreenWidthDp
undscreenHeightDp
betroffen.Configuration.orientation
ist indirekt von Änderungen anscreenWidthDp
undscreenHeightDp
auf Geräten mit einem quadratischen oder fast quadratischen Display betroffen.Display.getSize(Point)
ist indirekt von den Änderungen inConfiguration
betroffen. Diese Funktion wurde ab API-Level 30 verworfen.Display.getMetrics()
funktioniert seit API-Level 33 bereits so.
Das Attribut „elegantTextHeight“ ist standardmäßig auf „true“ gesetzt.
Bei Apps, die auf Android 15 (API-Level 35) ausgerichtet sind, wird das Attribut elegantTextHeight
TextView
standardmäßig in true
geändert. Dadurch wird die standardmäßig verwendete kompakte Schriftart durch eine Schriftart mit größeren vertikalen Maßen ersetzt, die viel besser lesbar ist.
Die kompakte Schrift wurde eingeführt, um Layouts zu vermeiden. Android 13 (API-Ebene 33) verhindert viele dieser Unterbrechungen, indem das Textlayout die vertikale Höhe mithilfe des Attributs fallbackLineSpacing
maximieren kann.
In Android 15 ist die kompakte Schrift weiterhin im System vorhanden. Sie können in Ihrer App also elegantTextHeight
auf false
festlegen, um das bisherige Verhalten beizubehalten. Es ist jedoch unwahrscheinlich, dass sie in zukünftigen Releases unterstützt wird. Wenn Ihre App die folgenden Schriftarten unterstützt: Arabisch, Lao, Myanmar, Tamil, Gujarati, Kannada, Malayalam, Oriya, Telugu oder Thai, testen Sie Ihre App, indem Sie elegantTextHeight
auf true
setzen.

elegantTextHeight
-Verhalten für Apps, die auf Android 14 (API-Level 34) und niedriger ausgerichtet sind.
elegantTextHeight
-Verhalten für Apps, die auf Android 15 ausgerichtet sind.TextView-Breite ändert sich bei komplexen Buchstabenformen
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.

<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" />
Gebietsschemaabhängige Standardzeilenhöhe für EditText
In previous versions of Android, the text layout stretched the height of the
text to meet the line height of the font that matched the current locale. For
example, if the content was in Japanese, because the line height of the Japanese
font is slightly larger than the one of a Latin font, the height of the text
became slightly larger. However, despite these differences in line heights, the
EditText
element was sized uniformly, regardless
of the locale being used, as illustrated in the following image:

EditText
elements that
can contain text from English (en), Japanese (ja), and Burmese (my). The
height of the EditText
is the same, even though these languages
have different line heights from each other.For apps targeting Android 15 (API level 35), a minimum line height is now
reserved for EditText
to match the reference font for the specified Locale, as
shown in the following image:

EditText
elements that
can contain text from English (en), Japanese (ja), and Burmese (my). The
height of the EditText
now includes space to accommodate the
default line height for these languages' fonts.If needed, your app can restore the previous behavior by specifying the
useLocalePreferredLineHeightForMinimum
attribute
to false
, and your app can set custom minimum vertical metrics using the
setMinimumFontMetrics
API in Kotlin and Java.
Kamera und Medien
Unter Android 15 werden die folgenden Änderungen am Kamera- und Medienverhalten für Apps eingeführt, die auf Android 15 oder höher ausgerichtet sind.
Einschränkungen beim Anfordern des Audiofokus
Apps that target Android 15 (API level 35) must be the top app or running a
foreground service in order to request audio focus. If an app
attempts to request focus when it does not meet one of these requirements, the
call returns AUDIOFOCUS_REQUEST_FAILED
.
You can learn more about audio focus at Manage audio focus.
Aktualisierte Einschränkungen für Nicht-SDKs
Android 15 enthält aktualisierte Listen eingeschränkter Nicht-SDK-Schnittstellen, die auf der Zusammenarbeit mit Android-Entwicklern und den neuesten internen Tests basieren. Wir sorgen nach Möglichkeit dafür, dass öffentliche Alternativen verfügbar sind, bevor wir Nicht-SDK-Schnittstellen einschränken.
Wenn Ihre App nicht auf Android 15 ausgerichtet ist, wirken sich einige dieser Änderungen möglicherweise nicht sofort auf Sie aus. Zwar kann Ihre App je nach Ziel-API-Level Ihrer App auf einige Nicht-SDK-Schnittstellen zugreifen, die Verwendung einer Nicht-SDK-Methode oder eines Nicht-SDK-Felds birgt jedoch immer ein hohes Risiko, dass Ihre App nicht mehr funktioniert.
Wenn Sie sich nicht sicher sind, ob Ihre App Nicht-SDK-Schnittstellen verwendet, können Sie Ihre App testen, um das herauszufinden. Wenn Ihre App auf Nicht-SDK-Schnittstellen basiert, sollten Sie mit der Planung einer Migration zu SDK-Alternativen beginnen. Wir verstehen jedoch, dass einige Apps gültige Anwendungsfälle für die Verwendung von Nicht-SDK-Schnittstellen haben. Wenn Sie für eine Funktion in Ihrer App keine Alternative zur Verwendung einer Nicht-SDK-Schnittstelle finden, sollten Sie eine neue öffentliche API anfordern.
Weitere Informationen zu den Änderungen in dieser Android-Version finden Sie unter Änderungen an den Einschränkungen für nicht SDK-spezifische Oberflächen in Android 15. Weitere Informationen zu Nicht-SDK-Schnittstellen finden Sie unter Einschränkungen für Nicht-SDK-Schnittstellen.