動作の変更点: Android 15 以降をターゲットとするアプリ

以前のリリースと同様に、Android 15 では、 説明します。以下の動作変更は、 Android 15 以降がターゲットになります。Android 15 以降をターゲットとするアプリの場合、 これらの動作を適切にサポートするようにアプリを修正する必要があります。 適用されます。

すべてのアプリに影響する動作変更のリストも必ずご確認ください。 アプリの targetSdkVersion に関係なく、Android 15 で実行されるデバイスに限られます。

コア機能

Android 15 では、Android システムのさまざまなコア機能を変更または拡張しています。

フォアグラウンド サービスの変更

Android 15 では、フォアグラウンド サービスに次の変更が行われます。

データ同期フォアグラウンド サービスのタイムアウト動作

Android 15 では、アプリ ターゲティングでの dataSync に新しいタイムアウト動作が導入されています Android 15(API レベル 35)以降。この動作は、新しい mediaProcessing フォアグラウンド サービス タイプ

システムはアプリの dataSync サービスを合計 6 時間実行できます。 24 時間以内に実行中のサービスのデータが呼び出されます。 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]"

この動作変更による問題を回避するには、次の操作を 1 つ以上実施してください。 次のとおりです。

  1. サービスに新しい Service.onTimeout(int, int) メソッドを実装します。 アプリがコールバックを受信したら、stopSelf() 表示されます。(アプリをすぐに停止しないと、 失敗します)。
  2. アプリの dataSync サービスの実行時間が合計 24 時間あたり 6 時間(ユーザーがアプリを操作した場合を除く) タイマーのリセットなど)。
  3. 直接的なユーザーの結果としてのみ dataSync フォアグラウンド サービスを開始 やり取りアプリがフォアグラウンドにあるため、 アプリがバックグラウンドに移行してから 6 時間が経過するまで待ってから、
  4. dataSync フォアグラウンド サービスの代わりに、 代替 API

アプリの dataSync フォアグラウンド サービスが過去 6 時間実行された場合 24 で、別の dataSync フォアグラウンド サービスを開始できるのは、ユーザーが アプリがフォアグラウンドになった(タイマーがリセットされます)。エラーを 別の dataSync フォアグラウンド サービスを開始すると、システムがスローする ForegroundServiceStartNotAllowedException 「Time limit already reached for front service」などのエラー メッセージが表示される 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 では、新しいフォアグラウンド サービス タイプ mediaProcessing が導入されています。この サービスタイプは、メディア ファイルのコード変換などの操作に適しています。対象 たとえば、メディアアプリが音声ファイルをダウンロードして、 別の形式にする必要があります。mediaProcessing フォアグラウンドを使用できます。 アプリが動作中でもコンバージョンが 説明します。

システムはアプリの mediaProcessing サービスの合計 6 回の実行を許可します。 24 時間(24 時間以内)であれば、実行中のサービスの Service.onTimeout(int, int) メソッド(Android で導入) 15)。この時点で、サービスは数秒以内に Service.stopSelf()。サービスが Service.stopSelf() を呼び出すと、システムは内部例外をスローします。「 例外が Logcat に次のメッセージとともに記録されます。

Fatal Exception: android.app.RemoteServiceException: "A foreground service of
type mediaProcessing did not stop within its timeout: [component name]"

例外を回避するには、次のいずれかを行います。

  1. サービスに新しい Service.onTimeout(int, int) メソッドを実装します。 アプリがコールバックを受信したら、stopSelf() 表示されます。(アプリをすぐに停止しないと、 失敗します)。
  2. アプリの mediaProcessing サービスが 合計 24 時間あたり 6 時間(ユーザーがアプリを操作した場合を除く) タイマーのリセットなど)。
  3. 直接的なユーザーの結果としてのみ mediaProcessing フォアグラウンド サービスを開始 やり取りアプリがフォアグラウンドにあるため、 アプリがバックグラウンドに移行してから 6 時間が経過するまで待ってから、
  4. mediaProcessing フォアグラウンド サービスの代わりに、 API(WorkManager など)を呼び出すことができます。

この期間内に、アプリの mediaProcessing フォアグラウンド サービスが 6 時間実行された場合は、 過去 24 日間、次の場合を除き、別の mediaProcessing フォアグラウンド サービスを開始することはできません。 ユーザーがアプリをフォアグラウンドにしたとき(これによりタイマーがリセットされます)。もし 別の mediaProcessing フォアグラウンド サービスを開始しようとすると、システムがスローする ForegroundServiceStartNotAllowedException 「Time limit already reached for front service」などのエラー メッセージが表示される タイプ mediaProcessing」があります。

mediaProcessing サービスタイプの詳細については、サービスタイプの変更 Android 15 のフォアグラウンド サービス タイプ: メディア処理

テスト

アプリの動作をテストするには、メディア処理のタイムアウトを アプリが 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 media_processing_fgs_timeout_duration duration-in-milliseconds

BOOT_COMPLETED ブロードキャスト レシーバによるフォアグラウンド サービスの起動に関する制限

BOOT_COMPLETED ブロードキャスト レシーバに対する新しい制限事項がリリースされます フォアグラウンド サービスの場合。BOOT_COMPLETED レシーバーは、API 呼び出しを起動できない フォアグラウンド サービスのタイプを使用できます。

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 権限を保持しているときのフォアグラウンド サービスの起動に関する制限

Previously, if an app held the SYSTEM_ALERT_WINDOW permission, it could launch a foreground service even if the app was currently in the background (as discussed in exemptions from background start restrictions).

If an app targets Android 15, this exemption is now narrower. The app now needs to have the SYSTEM_ALERT_WINDOW permission and also have a visible overlay window. That is, the app needs to first launch a TYPE_APPLICATION_OVERLAY window and the window needs to be visible before you start a foreground service.

If your app attempts to start a foreground service from the background without meeting these new requirements (and it does not have some other exemption), the system throws ForegroundServiceStartNotAllowedException.

If your app declares the SYSTEM_ALERT_WINDOW permission and launches foreground services from the background, it may be affected by this change. If your app gets a ForegroundServiceStartNotAllowedException, check your app's order of operations and make sure your app already has an active overlay window before it attempts to start a foreground service from the background. You can check if your overlay window is currently visible by calling View.getWindowVisibility(), or you can override View.onWindowVisibilityChanged() to get notified whenever the visibility changes.

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). To enable these new restrictions on starting foreground services from the background, run the following adb command:

adb shell am compat enable FGS_SAW_RESTRICTIONS your-package-name

アプリがサイレント モードのグローバル状態を変更できるタイミングに関する変更

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 の変更

Android 15 では、引き続き Android のコアライブラリを更新して、 最新の OpenJDK LTS リリースの機能を利用できます。

これらの変更の一部は、アプリ ターゲティングでのアプリの互換性に影響する可能性があります Android 15(API レベル 35):

  • 文字列書式設定 API の変更: 引数インデックス、フラグ、 以下を使用すると、より厳密になります。 String.format() API と Formatter.format() API:

    たとえば、引数のインデックスが 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]);
    
  • 言語コードの処理に関する変更: Locale API を使用する場合、 ヘブライ語、イディッシュ語、インドネシア語の言語コードは、 古い形式(ヘブライ語: iw、イディッシュ語: ji、インドネシア語: in)に変換されます。 これらの言語 / 地域のいずれかで言語コードを指定する場合は、次のコードを使用します。 を使用します(ヘブライ語: he、イディッシュ語: yi、インドネシア語: id)。

  • ランダムな整数シーケンスの変更: https://bugs.openjdk.org/browse/JDK-8301574 Random.ints() メソッドは、 Random.nextInt() メソッドは次のことを行います。

    通常、この変更によってアプリの互換性を損なう動作は発生しませんが、 Random.ints() メソッドから生成されるシーケンスをコードに想定しないでください。 Random.nextInt() に一致。

新しい SequencedCollection API はアプリの互換性に影響する可能性があります アプリのビルド構成で compileSdk を更新し、 Android 15(API レベル 35):

  • MutableList.removeFirst() および kotlin-stdlibMutableList.removeLast() 拡張関数

    Java の List 型は Kotlin の MutableList 型にマッピングされます。 List.removeFirst() API と List.removeLast() API により、 Kotlin コンパイラである Android 15(API レベル 35)で導入されました。 list.removeFirst() などの関数呼び出しを静的に 新しい List API に移行しました。 kotlin-stdlib

    compileSdk35 に設定し、minSdk34 以下で、アプリが Android 14 以前(ランタイム)で実行されている 次のエラーがスローされます。

    java.lang.NoSuchMethodError: No virtual method
    removeFirst()Ljava/lang/Object; in class Ljava/util/ArrayList;
    

    Android Gradle プラグインの既存の NewApi lint オプションでは、これらの問題を捕捉できます。 サポートします。

    ./gradlew lint
    
    MainActivity.kt:41: Error: Call requires API level 35 (current min is 34): java.util.List#removeFirst [NewApi]
          list.removeFirst()
    

    ランタイム例外と lint エラーを修正するには、removeFirst()removeLast() 関数の呼び出しは removeAt(0) に置き換えることができ、 Kotlin では、それぞれ removeAt(list.lastIndex) になります。以下を使用している場合: Android Studio Ladybug |2024.1.3 以降のバージョンでは、 オプションを使用します。

    lint オプションが無効になっている場合は、@SuppressLint("NewApi")lintOptions { disable 'NewApi' } を削除することを検討してください。

  • Java の他のメソッドとの競合

    新しいメソッドが既存の型に追加されました。たとえば、 ListDeque。これらの新しいメソッドには互換性がない場合がある 他のインターフェースで同じ名前と引数型を持つメソッドを、 ありません。メソッド シグネチャが 互換性がない場合、javac コンパイラはビルド時エラーを出力します。次に例を示します。

    エラーの例 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 List
    

    エラーの例 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 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 error
    

    これらのビルドエラーを修正するには、これらのインターフェースを実装するクラスに、 互換性のある戻り値の型でメソッドをオーバーライドします。例:

    @Override
    public Object getFirst() {
        return List.super.getLast();
    }
    

セキュリティ

Android 15 では、アプリを保護するためにシステム セキュリティを促進する変更が行われています 保護します。

安全なバックグラウンド アクティビティの起動

Android 15 では、悪意のあるアプリからユーザーを保護し、より細かく 悪意のあるバックグラウンド アプリが悪意のあるアクティビティを 他のアプリをフォアグラウンドで動作させる、権限昇格させる、アプリを悪用する です。バックグラウンド アクティビティの起動は、それ以降、 Android 10(API レベル 29)。

スタックの最上位の UID と一致しないアプリによるアクティビティの起動をブロックする

悪意のあるアプリは、同じタスク内で別のアプリのアクティビティを起動し、 そのアプリであるかのように見せかけます。この「タスク」は、 ハイジャック」現在のバックグラウンド起動の制限をバイパスできます。 同じ表示タスク内で発生します。このリスクを軽減するため、Android 15 では スタックの最上位の UID と一致しないアプリの起動をブロックするフラグ できます。アプリのすべてのアクティビティをオプトインするには、 allowCrossUidActivitySwitchFromBelow 属性を AndroidManifest.xml ファイル内で指定する必要があります。

<application android:allowCrossUidActivitySwitchFromBelow="false" >

次の条件がすべて満たされている場合、新しいセキュリティ対策は有効です。

  • リリースを実行するアプリは Android 15 をターゲットとしています。
  • タスクスタックの一番上にあるアプリは Android 15 をターゲットとしています。
  • 表示されているアクティビティはすべて、新しい保護設定にオプトインしています。

セキュリティ対策が有効になっている場合、アプリは 最後に表示されたアプリ(ユーザーが自身のタスクを完了した場合)

その他の変更点

UID マッチングの制限以外にも、次のような変更があります。 含まれるもの:

  • PendingIntent のクリエイターを変更してバックグラウンド アクティビティの起動をブロックするよう変更する デフォルトです。これにより、アプリが誤って IP アドレスを PendingIntent: 悪意のある人物によって悪用されるおそれがあります。
  • PendingIntent の送信者がない限りアプリをフォアグラウンドに戻さない 許可します。この変更は、悪意のあるアプリによって バックグラウンドでアクティビティを開始する機能。デフォルトでは、アプリが クリエイターが許可しない限り、タスクスタックをフォアグラウンドに移すことができる バックグラウンド アクティビティの起動権限がある、または送信者にバックグラウンド アクティビティがある できます。
  • タスクスタックのトップ アクティビティがタスクを終了する方法を制御する。もし 上位のアクティビティがタスクを終了すると、Android は 最後のアクティブな状態。さらに、トップ以外のアクティビティがそのタスクを完了すると、Android は ホーム画面に戻ります。このノントップ スレッドの できます。
  • 他のアプリから自分のアクティビティに任意のアクティビティを起動できないようにする タスクです。この変更により、悪意のあるアプリがユーザーをフィッシング攻撃から 他のアプリからと思われるアクティビティ
  • 非表示のウィンドウがバックグラウンド アクティビティの対象とみなされないようにブロックする 。これにより、悪意のあるアプリによるバックグラウンドの不正使用を防ぐことができます 望ましくないコンテンツや悪意のあるコンテンツをユーザーに表示する。

より安全なインテント

Android 15 introduces new optional security measures to make intents safer and more robust. These changes are aimed at preventing potential vulnerabilities and misuse of intents that can be exploited by malicious apps. There are two main improvements to the security of intents in Android 15:

  • Match target intent-filters: Intents that target specific components must accurately match the target's intent-filter specifications. If you send an intent to launch another app's activity, the target intent component needs to align with the receiving activity's declared intent-filters.
  • Intents must have actions: Intents without an action will no longer match any intent-filters. This means that intents used to start activities or services must have a clearly defined action.

In order to check how your app responds to these changes, use StrictMode in your app. To see detailed logs about Intent usage violations, add the following method:

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 のウィンドウ インセットに関連する変更点は 2 つあります。エッジ ツー エッジがデフォルトで適用されます。もう 1 つは、システムバーのデフォルト構成などの構成の変更です。

エッジ ツー エッジの適用

Apps are edge-to-edge by default on devices running Android 15 if the app is targeting Android 15 (API level 35).

An app that targets Android 14 and is not edge-to-edge on an Android 15 device.


An app that targets Android 15 (API level 35) and is edge-to-edge on an Android 15 device. This app mostly uses Material 3 Compose Components that automatically apply insets. This screen is not negatively impacted by the Android 15 edge-to-edge enforcement.

This is a breaking change that might negatively impact your app's UI. The changes affect the following UI areas:

  • Gesture handle navigation bar
    • Transparent by default.
    • Bottom offset is disabled so content draws behind the system navigation bar unless insets are applied.
    • setNavigationBarColor and R.attr#navigationBarColor are deprecated and don't affect gesture navigation.
    • setNavigationBarContrastEnforced and R.attr#navigationBarContrastEnforced continue to have no effect on gesture navigation.
  • 3-button navigation
    • Opacity set to 80% by default, with color possibly matching the window background.
    • Bottom offset disabled so content draws behind the system navigation bar unless insets are applied.
    • setNavigationBarColor and R.attr#navigationBarColor are set to match the window background by default. The window background must be a color drawable for this default to apply. This API is deprecated but continues to affect 3-button navigation.
    • setNavigationBarContrastEnforced and R.attr#navigationBarContrastEnforced is true by default, which adds an 80% opaque background across 3-button navigation.
  • Status bar
    • Transparent by default.
    • The top offset is disabled so content draws behind the status bar unless insets are applied.
    • setStatusBarColor and R.attr#statusBarColor are deprecated and have no effect on Android 15.
    • setStatusBarContrastEnforced and R.attr#statusBarContrastEnforced are deprecated but still have an effect on Android 15.
  • Display cutout
    • layoutInDisplayCutoutMode of non-floating windows must be LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS. SHORT_EDGES, NEVER, and DEFAULT are interpreted as ALWAYS so that users don't see a black bar caused by the display cutout and appear edge-to-edge.

The following example shows an app before and after targeting Android 15 (API level 35), and before and after applying insets.

An app that targets Android 14 and is not edge-to-edge on an Android 15 device.
An app that targets Android 15 (API level 35) and is edge-to-edge on an Android 15 device. However, many elements are now hidden by the status bar, 3-button navigation bar, or display cutout due to the Android 15 edge-to-edge enforcements. Hidden UI includes the Material 2 top app bar, floating action buttons, and list items.
An app that targets Android 15 (API level 35), is edge to edge on an Android 15 device and applies insets so that UI is not hidden.
What to check if your app is already edge-to-edge

If your app is already edge-to-edge and applies insets, you are mostly unimpacted, except in the following scenarios. However, even if you think you aren't impacted, we recommend you test your app.

  • You have a non-floating window, such as an Activity that uses SHORT_EDGES, NEVER or DEFAULT instead of LAYOUT_IN_DISPLAY_CUTOUT_MODE_ALWAYS. If your app crashes on launch, this might be due to your splashscreen. You can either upgrade the core splashscreen dependency to 1.2.0-alpha01 or later or set window.attributes.layoutInDisplayCutoutMode = WindowManager.LayoutInDisplayCutoutMode.always.
  • There might be lower-traffic screens with occluded UI. Verify these less-visited screens don't have occluded UI. Lower-traffic screens include:
    • Onboarding or sign-in screens
    • Settings pages
What to check if your app is not already edge-to-edge

If your app is not already edge-to-edge, you are most likely impacted. In addition to the scenarios for apps that are already edge-to-edge, you should consider the following:

  • If your app uses Material 3 Components ( androidx.compose.material3) in compose, such as TopAppBar, BottomAppBar, and NavigationBar, these components are likely not impacted because they automatically handle insets.
  • If your app is using Material 2 Components ( androidx.compose.material) in Compose, these components don't automatically handle insets. However, you can get access to the insets and apply them manually. In androidx.compose.material 1.6.0 and later, use the windowInsets parameter to apply the insets manually for BottomAppBar, TopAppBar, BottomNavigation, and NavigationRail. Likewise, use the contentWindowInsets parameter for Scaffold.
  • If your app uses views and Material Components (com.google.android.material), most views-based Material Components such as BottomNavigationView, BottomAppBar, NavigationRailView, or NavigationView, handle insets and require no additional work. However, you need to add android:fitsSystemWindows="true" if using AppBarLayout.
  • For custom composables, apply the insets manually as padding. If your content is within a Scaffold, you can consume insets using the Scaffold padding values. Otherwise, apply padding using one of the WindowInsets.
  • If your app is using views and BottomSheet, SideSheet or custom containers, apply padding using ViewCompat.setOnApplyWindowInsetsListener. For RecyclerView, apply padding using this listener and also add clipToPadding="false".
What to check if your app must offer custom background protection

If your app must offer custom background protection to 3-button navigation or the status bar, your app should place a composable or view behind the system bar using WindowInsets.Type#tappableElement() to get the 3-button navigation bar height or WindowInsets.Type#statusBars.

Additional edge-to-edge resources

See the Edge to Edge Views and Edge to Edge Compose guides for additional considerations on applying insets.

Deprecated APIs

The following APIs are now deprecated:

安定した構成

Android 15(API レベル 35)以降をターゲットとするアプリの場合、Configurationいいえ システムバーが除外されますAndroid 10 の Configuration クラスをレイアウト計算に使用する場合は、 適切な ViewGroupWindowInsets、または 必要に応じて WindowMetricsCalculator

Configuration は API 1 以降で使用できます。通常は Activity.onConfigurationChanged。ウィンドウ密度、 画面の向き、サイズです。ウィンドウサイズに関する重要な特性の 1 つは Configuration から返されたのは、以前にシステムバーを除外していた点です。

構成サイズは通常、次のようなリソースの選択に使用されます。 /res/layout-h500dp であり、これも有効なユースケースです。ただし、 レイアウトの計算は常に推奨されません。その場合は、 今から離れていきましょう。Configuration の使用を次の内容に置き換える必要があります。 より適したモデルを選択できます。

これを使用してレイアウトを計算する場合は、適切な ViewGroup を使用します。次に例を示します。 CoordinatorLayout または ConstraintLayout。高さの値の計算に使用すると システム ナビゲーション バーの WindowInsets を使用します。現在のサイズを確認するには computeCurrentWindowMetrics を使用します。

この変更の影響を受けるフィールドは次のとおりです。

sensitiveTextHeight 属性のデフォルトを true に設定

Android 15 をターゲットとするアプリの場合、elegantTextHeight TextView 属性はデフォルトで true になり、デフォルトで使用されるコンパクト フォントが、大きな垂直指標を持つ一部のスクリプトに置き換えられ、より読みやすいものに置き換えられます。コンパクト フォントはレイアウトの破損を防ぐために導入されました。Android 13(API レベル 33)では、テキスト レイアウトで fallbackLineSpacing 属性を使用して垂直方向の高さを拡大できるようにすることで、こうした破損の多くを回避しています。

Android 15 では、コンパクト フォントがまだシステムに残っているため、アプリで elegantTextHeightfalse に設定して以前と同じ動作を得ることができますが、今後のリリースではサポートされない見込みです。そのため、アラビア語、ラオ語、ミャンマー、タミル語、グジャラート語、カンナダ語、マラヤーラム語、オディア語、テルグ語、タイ語のスクリプトをアプリがサポートしている場合は、elegantTextHeighttrue に設定してアプリをテストします。

Android 14(API レベル 34)以下をターゲットとするアプリの elegantTextHeight の動作。
Android 15 をターゲットとするアプリの elegantTextHeight の動作。

複雑な文字形状における TextView の幅の変化

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.

Standard layout for English text in a cursive font. Some of the letters are clipped. Here is the corresponding XML:

<TextView
    android:fontFamily="cursive"
    android:text="java" />
Layout for the same English text with additional width and padding. Here is the corresponding XML:

<TextView
    android:fontFamily="cursive"
    android:text="java"
    android:useBoundsForWidth="true"
    android:shiftDrawingOffsetForStartOverhang="true" />
Standard layout for Thai text. Some of the letters are clipped. Here is the corresponding XML:

<TextView
    android:text="คอมพิวเตอร์" />
Layout for the same Thai text with additional width and padding. Here is the corresponding XML:

<TextView
    android:text="คอมพิวเตอร์"
    android:useBoundsForWidth="true"
    android:shiftDrawingOffsetForStartOverhang="true" />

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:

Three boxes representing 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:

Three boxes representing 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.

カメラとメディア

Android 15 では、アプリのカメラとメディアの動作が次のように変更されます Android 15 以降をターゲットとするアプリである必要があります。

音声フォーカスのリクエストに関する制限

音声フォーカスをリクエストするには、Android 15 をターゲットとするアプリが最上位のアプリであるか、フォアグラウンド サービスを実行している必要があります。アプリがこれらの要件のいずれかを満たしていないときにフォーカスをリクエストしようとすると、呼び出しは AUDIOFOCUS_REQUEST_FAILED を返します。

音声フォーカスの詳細については、音声フォーカスの管理をご覧ください。

非 SDK の制限の更新

Android 15 で、制限対象となる非 SDK のリストが更新されています インターフェースをベースとしており、Android デベロッパーとの 内部テストです。Google は、非 SDK インターフェースを制限する前に、可能な限り、その代わりとなる公開インターフェースを利用可能にしています。

Android 15 をターゲットとしないアプリの場合、一部の変更 すぐには影響しない可能性があります。ただし、アプリが 一部の非 SDK インターフェースにアクセスする アプリの対象 API レベルに応じて異なる メソッドまたはフィールドを使用すると、アプリが機能しなくなるリスクが高くなります。

アプリが非 SDK インターフェースを使用しているかどうか不明な場合は、 アプリをテストして確認します。アプリが非 SDK に依存している場合 インターフェースがある場合は、代替バージョンの SDK への移行計画を開始する必要があります。 とはいえ、アプリによっては、 非 SDK インターフェースで使用できます。非 SDK の代替手段が見つからない場合 インターフェースを機能させるには、 新しい公開 API をリクエストします。

Android の今回のリリースの変更について詳しくは、非 SDK インターフェースの制限に関する Android 15 での変更点をご覧ください。非 SDK インターフェース全般について詳しくは、非 SDK インターフェースの制限をご覧ください。