1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
|
/*
* Copyright (C) 2010 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package android.app;
import android.annotation.CallbackExecutor;
import android.annotation.IntDef;
import android.annotation.IntRange;
import android.annotation.NonNull;
import android.annotation.Nullable;
import android.annotation.RequiresPermission;
import android.annotation.SystemApi;
import android.annotation.SystemService;
import android.annotation.TestApi;
import android.compat.annotation.UnsupportedAppUsage;
import android.content.Context;
import android.content.res.Configuration;
import android.os.Binder;
import android.os.RemoteException;
import android.os.ServiceManager;
import android.os.ServiceManager.ServiceNotFoundException;
import android.util.ArrayMap;
import android.util.ArraySet;
import android.util.Slog;
import com.android.internal.annotations.GuardedBy;
import com.android.internal.util.function.pooled.PooledLambda;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
import java.lang.ref.WeakReference;
import java.time.LocalTime;
import java.util.List;
import java.util.Map;
import java.util.Set;
import java.util.concurrent.Executor;
/**
* This class provides access to the system uimode services. These services
* allow applications to control UI modes of the device.
* It provides functionality to disable the car mode and it gives access to the
* night mode settings.
*
* <p>These facilities are built on top of the underlying
* {@link android.content.Intent#ACTION_DOCK_EVENT} broadcasts that are sent when the user
* physical places the device into and out of a dock. When that happens,
* the UiModeManager switches the system {@link android.content.res.Configuration}
* to the appropriate UI mode, sends broadcasts about the mode switch, and
* starts the corresponding mode activity if appropriate. See the
* broadcasts {@link #ACTION_ENTER_CAR_MODE} and
* {@link #ACTION_ENTER_DESK_MODE} for more information.
*
* <p>In addition, the user may manually switch the system to car mode without
* physically being in a dock. While in car mode -- whether by manual action
* from the user or being physically placed in a dock -- a notification is
* displayed allowing the user to exit dock mode. Thus the dock mode
* represented here may be different than the current state of the underlying
* dock event broadcast.
*/
@SystemService(Context.UI_MODE_SERVICE)
public class UiModeManager {
/**
* A listener with a single method that is invoked whenever the packages projecting using the
* {@link ProjectionType}s for which it is registered change.
*
* @hide
*/
@SystemApi
public interface OnProjectionStateChangedListener {
/**
* Callback invoked when projection state changes for a {@link ProjectionType} for which
* this listener was added.
* @param projectionType the listened-for {@link ProjectionType}s that have changed
* @param packageNames the {@link Set} of package names that have currently set those
* {@link ProjectionType}s.
*/
void onProjectionStateChanged(@ProjectionType int projectionType,
@NonNull Set<String> packageNames);
}
private static final String TAG = "UiModeManager";
/**
* Broadcast sent when the device's UI has switched to car mode, either
* by being placed in a car dock or explicit action of the user. After
* sending the broadcast, the system will start the intent
* {@link android.content.Intent#ACTION_MAIN} with category
* {@link android.content.Intent#CATEGORY_CAR_DOCK}
* to display the car UI, which typically what an application would
* implement to provide their own interface. However, applications can
* also monitor this Intent in order to be informed of mode changes or
* prevent the normal car UI from being displayed by setting the result
* of the broadcast to {@link Activity#RESULT_CANCELED}.
* <p>
* This intent is broadcast when {@link #getCurrentModeType()} transitions to
* {@link Configuration#UI_MODE_TYPE_CAR} from some other ui mode.
*/
public static String ACTION_ENTER_CAR_MODE = "android.app.action.ENTER_CAR_MODE";
/**
* Broadcast sent when an app has entered car mode using either {@link #enableCarMode(int)} or
* {@link #enableCarMode(int, int)}.
* <p>
* Unlike {@link #ACTION_ENTER_CAR_MODE}, which is only sent when the global car mode state
* (i.e. {@link #getCurrentModeType()}) transitions to {@link Configuration#UI_MODE_TYPE_CAR},
* this intent is sent any time an app declares it has entered car mode. Thus, this intent is
* intended for use by a component which needs to know not only when the global car mode state
* changed, but also when the highest priority app declaring car mode has changed.
* <p>
* This broadcast includes the package name of the app which requested to enter car mode in
* {@link #EXTRA_CALLING_PACKAGE}. The priority the app entered car mode at is specified in
* {@link #EXTRA_PRIORITY}.
* <p>
* This is primarily intended to be received by other components of the Android OS.
* <p>
* Receiver requires permission: {@link android.Manifest.permission.HANDLE_CAR_MODE_CHANGES}
* @hide
*/
@SystemApi
public static final String ACTION_ENTER_CAR_MODE_PRIORITIZED =
"android.app.action.ENTER_CAR_MODE_PRIORITIZED";
/**
* Broadcast sent when the device's UI has switch away from car mode back
* to normal mode. Typically used by a car mode app, to dismiss itself
* when the user exits car mode.
* <p>
* This intent is broadcast when {@link #getCurrentModeType()} transitions from
* {@link Configuration#UI_MODE_TYPE_CAR} to some other ui mode.
*/
public static String ACTION_EXIT_CAR_MODE = "android.app.action.EXIT_CAR_MODE";
/**
* Broadcast sent when an app has exited car mode using {@link #disableCarMode(int)}.
* <p>
* Unlike {@link #ACTION_EXIT_CAR_MODE}, which is only sent when the global car mode state
* (i.e. {@link #getCurrentModeType()}) transitions to a non-car mode state such as
* {@link Configuration#UI_MODE_TYPE_NORMAL}, this intent is sent any time an app declares it
* has exited car mode. Thus, this intent is intended for use by a component which needs to
* know not only when the global car mode state changed, but also when the highest priority app
* declaring car mode has changed.
* <p>
* This broadcast includes the package name of the app which requested to exit car mode in
* {@link #EXTRA_CALLING_PACKAGE}. The priority the app originally entered car mode at is
* specified in {@link #EXTRA_PRIORITY}.
* <p>
* If {@link #DISABLE_CAR_MODE_ALL_PRIORITIES} is used when disabling car mode (i.e. this is
* initiated by the user via the persistent car mode notification), this broadcast is sent once
* for each priority level for which car mode is being disabled.
* <p>
* This is primarily intended to be received by other components of the Android OS.
* <p>
* Receiver requires permission: {@link android.Manifest.permission.HANDLE_CAR_MODE_CHANGES}
* @hide
*/
@SystemApi
public static final String ACTION_EXIT_CAR_MODE_PRIORITIZED =
"android.app.action.EXIT_CAR_MODE_PRIORITIZED";
/**
* Broadcast sent when the device's UI has switched to desk mode,
* by being placed in a desk dock. After
* sending the broadcast, the system will start the intent
* {@link android.content.Intent#ACTION_MAIN} with category
* {@link android.content.Intent#CATEGORY_DESK_DOCK}
* to display the desk UI, which typically what an application would
* implement to provide their own interface. However, applications can
* also monitor this Intent in order to be informed of mode changes or
* prevent the normal desk UI from being displayed by setting the result
* of the broadcast to {@link Activity#RESULT_CANCELED}.
*/
public static String ACTION_ENTER_DESK_MODE = "android.app.action.ENTER_DESK_MODE";
/**
* Broadcast sent when the device's UI has switched away from desk mode back
* to normal mode. Typically used by a desk mode app, to dismiss itself
* when the user exits desk mode.
*/
public static String ACTION_EXIT_DESK_MODE = "android.app.action.EXIT_DESK_MODE";
/**
* String extra used with {@link #ACTION_ENTER_CAR_MODE_PRIORITIZED} and
* {@link #ACTION_EXIT_CAR_MODE_PRIORITIZED} to indicate the package name of the app which
* requested to enter or exit car mode.
* @hide
*/
@SystemApi
public static final String EXTRA_CALLING_PACKAGE = "android.app.extra.CALLING_PACKAGE";
/**
* Integer extra used with {@link #ACTION_ENTER_CAR_MODE_PRIORITIZED} and
* {@link #ACTION_EXIT_CAR_MODE_PRIORITIZED} to indicate the priority level at which car mode
* is being disabled.
* @hide
*/
@SystemApi
public static final String EXTRA_PRIORITY = "android.app.extra.PRIORITY";
/** @hide */
@IntDef(prefix = { "MODE_" }, value = {
MODE_NIGHT_AUTO,
MODE_NIGHT_CUSTOM,
MODE_NIGHT_NO,
MODE_NIGHT_YES
})
@Retention(RetentionPolicy.SOURCE)
public @interface NightMode {}
/**
* Constant for {@link #setNightMode(int)} and {@link #getNightMode()}:
* automatically switch night mode on and off based on the time.
*/
public static final int MODE_NIGHT_AUTO = 0;
/**
* Constant for {@link #setNightMode(int)} and {@link #getNightMode()}:
* automatically switch night mode on and off based on the time.
*/
public static final int MODE_NIGHT_CUSTOM = 3;
/**
* Constant for {@link #setNightMode(int)} and {@link #getNightMode()}:
* never run in night mode.
*/
public static final int MODE_NIGHT_NO = 1;
/**
* Constant for {@link #setNightMode(int)} and {@link #getNightMode()}:
* always run in night mode.
*/
public static final int MODE_NIGHT_YES = 2;
/**
* Granular types for {@link #setNightModeCustomType(int)}
* @hide
*/
@IntDef(prefix = { "MODE_NIGHT_CUSTOM_TYPE_" }, value = {
MODE_NIGHT_CUSTOM_TYPE_SCHEDULE,
MODE_NIGHT_CUSTOM_TYPE_BEDTIME,
})
@Retention(RetentionPolicy.SOURCE)
public @interface NightModeCustomType {}
/**
* Granular types for {@link #getNightModeCustomType()}
* @hide
*/
@IntDef(prefix = { "MODE_NIGHT_CUSTOM_TYPE_" }, value = {
MODE_NIGHT_CUSTOM_TYPE_UNKNOWN,
MODE_NIGHT_CUSTOM_TYPE_SCHEDULE,
MODE_NIGHT_CUSTOM_TYPE_BEDTIME,
})
@Retention(RetentionPolicy.SOURCE)
public @interface NightModeCustomReturnType {}
/**
* A granular type for {@link #MODE_NIGHT_CUSTOM} which is unknown.
* <p>
* This is the default value when the night mode is set to value other than
* {@link #MODE_NIGHT_CUSTOM}.
* @hide
*/
@SystemApi
public static final int MODE_NIGHT_CUSTOM_TYPE_UNKNOWN = -1;
/**
* A granular type for {@link #MODE_NIGHT_CUSTOM} which is based on a custom schedule.
* <p>
* This is the default value when night mode is set to {@link #MODE_NIGHT_CUSTOM} unless the
* the night mode custom type is specified by calling {@link #setNightModeCustomType(int)}.
* @hide
*/
@SystemApi
public static final int MODE_NIGHT_CUSTOM_TYPE_SCHEDULE = 0;
/**
* A granular type for {@link #MODE_NIGHT_CUSTOM} which is based on the bedtime schedule.
* @hide
*/
@SystemApi
public static final int MODE_NIGHT_CUSTOM_TYPE_BEDTIME = 1;
private IUiModeManager mService;
/**
* Context required for getting the opPackageName of API caller; maybe be {@code null} if the
* old constructor marked with UnSupportedAppUsage is used.
*/
private @Nullable Context mContext;
private final Object mLock = new Object();
/**
* Map that stores internally created {@link InnerListener} objects keyed by their corresponding
* externally provided callback objects.
*/
@GuardedBy("mLock")
private final Map<OnProjectionStateChangedListener, InnerListener>
mProjectionStateListenerMap = new ArrayMap<>();
/**
* Resource manager that prevents memory leakage of Contexts via binder objects if clients
* fail to remove listeners.
*/
@GuardedBy("mLock")
private final OnProjectionStateChangedListenerResourceManager
mOnProjectionStateChangedListenerResourceManager =
new OnProjectionStateChangedListenerResourceManager();
@UnsupportedAppUsage
/*package*/ UiModeManager() throws ServiceNotFoundException {
this(null /* context */);
}
/*package*/ UiModeManager(Context context) throws ServiceNotFoundException {
mService = IUiModeManager.Stub.asInterface(
ServiceManager.getServiceOrThrow(Context.UI_MODE_SERVICE));
mContext = context;
}
/**
* Flag for use with {@link #enableCarMode(int)}: go to the car
* home activity as part of the enable. Enabling this way ensures
* a clean transition between the current activity (in non-car-mode) and
* the car home activity that will serve as home while in car mode. This
* will switch to the car home activity even if we are already in car mode.
*/
public static final int ENABLE_CAR_MODE_GO_CAR_HOME = 0x0001;
/**
* Flag for use with {@link #enableCarMode(int)}: allow sleep mode while in car mode.
* By default, when this flag is not set, the system may hold a full wake lock to keep the
* screen turned on and prevent the system from entering sleep mode while in car mode.
* Setting this flag disables such behavior and the system may enter sleep mode
* if there is no other user activity and no other wake lock held.
* Setting this flag can be relevant for a car dock application that does not require the
* screen kept on.
*/
public static final int ENABLE_CAR_MODE_ALLOW_SLEEP = 0x0002;
/** @hide */
@IntDef(prefix = {"ENABLE_CAR_MODE_"}, value = {
ENABLE_CAR_MODE_GO_CAR_HOME,
ENABLE_CAR_MODE_ALLOW_SLEEP
})
@Retention(RetentionPolicy.SOURCE)
public @interface EnableCarMode {}
/**
* Force device into car mode, like it had been placed in the car dock.
* This will cause the device to switch to the car home UI as part of
* the mode switch.
* @param flags Must be 0.
*/
public void enableCarMode(int flags) {
enableCarMode(DEFAULT_PRIORITY, flags);
}
/**
* Force device into car mode, like it had been placed in the car dock. This will cause the
* device to switch to the car home UI as part of the mode switch.
* <p>
* An app may request to enter car mode when the system is already in car mode. The app may
* specify a "priority" when entering car mode. The device will remain in car mode
* (i.e. {@link #getCurrentModeType()} is {@link Configuration#UI_MODE_TYPE_CAR}) as long as
* there is a priority level at which car mode have been enabled.
* <p>
* Specifying a priority level when entering car mode is important in cases where multiple apps
* on a device implement a car-mode {@link android.telecom.InCallService} (see
* {@link android.telecom.TelecomManager#METADATA_IN_CALL_SERVICE_CAR_MODE_UI}). The
* {@link android.telecom.InCallService} associated with the highest priority app which entered
* car mode will be bound to by Telecom and provided with information about ongoing calls on
* the device.
* <p>
* System apps holding the required permission can enable car mode when the app determines the
* correct conditions exist for that app to be in car mode. The device maker should ensure that
* where multiple apps exist on the device which can potentially enter car mode, appropriate
* priorities are used to ensure that calls delivered by the
* {@link android.telecom.InCallService} API are sent to the highest priority app given the
* desired behavior of the car mode experience on the device.
* <p>
* If app A and app B both meet their own criteria to enable car mode, and it is desired that
* app B should be the one which should receive call information in that scenario, the priority
* for app B should be higher than the one for app A. The higher priority of app B compared to
* A means it will be bound to during calls and app A will not. When app B no longer meets its
* criteria for providing a car mode experience it uses {@link #disableCarMode(int)} to disable
* car mode at its priority level. The system will then unbind from app B and bind to app A as
* it has the next highest priority.
* <p>
* When an app enables car mode at a certain priority, it can disable car mode at the specified
* priority level using {@link #disableCarMode(int)}. An app may only enable car mode at a
* single priority.
* <p>
* Public apps are assumed to enter/exit car mode at the lowest priority,
* {@link #DEFAULT_PRIORITY}.
*
* @param priority The declared priority for the caller, where {@link #DEFAULT_PRIORITY} (0) is
* the lowest priority and higher numbers represent a higher priority.
* The priorities apps declare when entering car mode is determined by the
* device manufacturer based on the desired car mode experience.
* @param flags Car mode flags.
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.ENTER_CAR_MODE_PRIORITIZED)
public void enableCarMode(@IntRange(from = 0) int priority, @EnableCarMode int flags) {
if (mService != null) {
try {
mService.enableCarMode(flags, priority,
mContext == null ? null : mContext.getOpPackageName());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
}
/**
* Flag for use with {@link #disableCarMode(int)}: go to the normal
* home activity as part of the disable. Disabling this way ensures
* a clean transition between the current activity (in car mode) and
* the original home activity (which was typically last running without
* being in car mode).
*/
public static final int DISABLE_CAR_MODE_GO_HOME = 0x0001;
/**
* Flag for use with {@link #disableCarMode(int)}: Disables car mode at ALL priority levels.
* Primarily intended for use from {@link com.android.internal.app.DisableCarModeActivity} to
* provide the user with a means to exit car mode at all priority levels.
* @hide
*/
public static final int DISABLE_CAR_MODE_ALL_PRIORITIES = 0x0002;
/** @hide */
@IntDef(prefix = { "DISABLE_CAR_MODE_" }, value = {
DISABLE_CAR_MODE_GO_HOME
})
@Retention(RetentionPolicy.SOURCE)
public @interface DisableCarMode {}
/**
* The default priority used for entering car mode.
* <p>
* Callers of the {@link #enableCarMode(int)} priority will be assigned the default priority.
* This is considered the lowest possible priority for enabling car mode.
* <p>
* System apps can specify a priority other than the default priority when using
* {@link #enableCarMode(int, int)} to enable car mode.
* @hide
*/
@SystemApi
public static final int DEFAULT_PRIORITY = 0;
/**
* Turn off special mode if currently in car mode.
* @param flags One of the disable car mode flags.
*/
public void disableCarMode(@DisableCarMode int flags) {
if (mService != null) {
try {
mService.disableCarModeByCallingPackage(flags,
mContext == null ? null : mContext.getOpPackageName());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
}
/**
* Return the current running mode type. May be one of
* {@link Configuration#UI_MODE_TYPE_NORMAL Configuration.UI_MODE_TYPE_NORMAL},
* {@link Configuration#UI_MODE_TYPE_DESK Configuration.UI_MODE_TYPE_DESK},
* {@link Configuration#UI_MODE_TYPE_CAR Configuration.UI_MODE_TYPE_CAR},
* {@link Configuration#UI_MODE_TYPE_TELEVISION Configuration.UI_MODE_TYPE_TELEVISION},
* {@link Configuration#UI_MODE_TYPE_APPLIANCE Configuration.UI_MODE_TYPE_APPLIANCE},
* {@link Configuration#UI_MODE_TYPE_WATCH Configuration.UI_MODE_TYPE_WATCH}, or
* {@link Configuration#UI_MODE_TYPE_VR_HEADSET Configuration.UI_MODE_TYPE_VR_HEADSET}.
*/
public int getCurrentModeType() {
if (mService != null) {
try {
return mService.getCurrentModeType();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return Configuration.UI_MODE_TYPE_NORMAL;
}
/**
* Sets the system-wide night mode.
* <p>
* The mode can be one of:
* <ul>
* <li><em>{@link #MODE_NIGHT_NO}<em> sets the device into
* {@code notnight} mode</li>
* <li><em>{@link #MODE_NIGHT_YES}</em> sets the device into
* {@code night} mode</li>
* <li><em>{@link #MODE_NIGHT_CUSTOM}</em> automatically switches between
* {@code night} and {@code notnight} based on the custom time set (or default)</li>
* <li><em>{@link #MODE_NIGHT_AUTO}</em> automatically switches between
* {@code night} and {@code notnight} based on the device's current
* location and certain other sensors</li>
* </ul>
* <p>
* <strong>Note:</strong> On API 22 and below, changes to the night mode
* are only effective when the {@link Configuration#UI_MODE_TYPE_CAR car}
* or {@link Configuration#UI_MODE_TYPE_DESK desk} mode is enabled on a
* device. On API 23 through API 28, changes to night mode are always effective.
* <p>
* Starting in API 29, when the device is in car mode and this method is called, night mode
* will change, but the new setting is not persisted and the previously persisted setting
* will be restored when the device exits car mode.
* <p>
* Changes to night mode take effect globally and will result in a configuration change
* (and potentially an Activity lifecycle event) being applied to all running apps.
* Developers interested in an app-local implementation of night mode should consider using
* {@link #setApplicationNightMode(int)} to set and persist the -night qualifier locally or
* {@link androidx.appcompat.app.AppCompatDelegate#setDefaultNightMode(int)} for the
* backward compatible implementation.
*
* @param mode the night mode to set
* @see #getNightMode()
* @see #setApplicationNightMode(int)
*/
public void setNightMode(@NightMode int mode) {
if (mService != null) {
try {
mService.setNightMode(mode);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
}
/**
* Sets the current night mode to {@link #MODE_NIGHT_CUSTOM} with the custom night mode type
* {@code nightModeCustomType}.
*
* @param nightModeCustomType
* @throws IllegalArgumentException if passed an unsupported type to
* {@code nightModeCustomType}.
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.MODIFY_DAY_NIGHT_MODE)
public void setNightModeCustomType(@NightModeCustomType int nightModeCustomType) {
if (mService != null) {
try {
mService.setNightModeCustomType(nightModeCustomType);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
}
/**
* Returns the custom night mode type.
* <p>
* If the current night mode is not {@link #MODE_NIGHT_CUSTOM}, returns
* {@link #MODE_NIGHT_CUSTOM_TYPE_UNKNOWN}.
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.MODIFY_DAY_NIGHT_MODE)
public @NightModeCustomReturnType int getNightModeCustomType() {
if (mService != null) {
try {
return mService.getNightModeCustomType();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return MODE_NIGHT_CUSTOM_TYPE_UNKNOWN;
}
/**
* Sets and persist the night mode for this application.
* <p>
* The mode can be one of:
* <ul>
* <li><em>{@link #MODE_NIGHT_NO}<em> sets the device into
* {@code notnight} mode</li>
* <li><em>{@link #MODE_NIGHT_YES}</em> sets the device into
* {@code night} mode</li>
* <li><em>{@link #MODE_NIGHT_CUSTOM}</em> automatically switches between
* {@code night} and {@code notnight} based on the custom time set (or default)</li>
* <li><em>{@link #MODE_NIGHT_AUTO}</em> automatically switches between
* {@code night} and {@code notnight} based on the device's current
* location and certain other sensors</li>
* </ul>
* <p>
* Changes to night mode take effect locally and will result in a configuration change
* (and potentially an Activity lifecycle event) being applied to this application. The mode
* is persisted for this application until it is either modified by the application, the
* user clears the data for the application, or this application is uninstalled.
* <p>
* Developers interested in a non-persistent app-local implementation of night mode should
* consider using {@link androidx.appcompat.app.AppCompatDelegate#setDefaultNightMode(int)}
* to manage the -night qualifier locally.
*
* @param mode the night mode to set
* @see #setNightMode(int)
*/
public void setApplicationNightMode(@NightMode int mode) {
if (mService != null) {
try {
mService.setApplicationNightMode(mode);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
}
/**
* Returns the currently configured night mode.
* <p>
* May be one of:
* <ul>
* <li>{@link #MODE_NIGHT_NO}</li>
* <li>{@link #MODE_NIGHT_YES}</li>
* <li>{@link #MODE_NIGHT_AUTO}</li>
* <li>{@link #MODE_NIGHT_CUSTOM}</li>
* <li>{@code -1} on error</li>
* </ul>
*
* @return the current night mode, or {@code -1} on error
* @see #setNightMode(int)
*/
public @NightMode int getNightMode() {
if (mService != null) {
try {
return mService.getNightMode();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return -1;
}
/**
* @return If UI mode is locked or not. When UI mode is locked, calls to change UI mode
* like {@link #enableCarMode(int)} will silently fail.
* @hide
*/
@TestApi
public boolean isUiModeLocked() {
if (mService != null) {
try {
return mService.isUiModeLocked();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return true;
}
/**
* Returns whether night mode is locked or not.
* <p>
* When night mode is locked, only privileged system components may change
* night mode and calls from non-privileged applications to change night
* mode will fail silently.
*
* @return {@code true} if night mode is locked or {@code false} otherwise
* @hide
*/
@TestApi
public boolean isNightModeLocked() {
if (mService != null) {
try {
return mService.isNightModeLocked();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return true;
}
/**
* [De]activating night mode for the current user if the current night mode is custom and the
* custom type matches {@code nightModeCustomType}.
*
* @param nightModeCustomType the specify type of custom mode
* @param active {@code true} to activate night mode. Otherwise, deactivate night mode
* @return {@code true} if night mode has successfully activated for the requested
* {@code nightModeCustomType}.
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.MODIFY_DAY_NIGHT_MODE)
public boolean setNightModeActivatedForCustomMode(@NightModeCustomType int nightModeCustomType,
boolean active) {
if (mService != null) {
try {
return mService.setNightModeActivatedForCustomMode(nightModeCustomType, active);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return false;
}
/**
* Activating night mode for the current user
*
* @return {@code true} if the change is successful
* @hide
*/
@RequiresPermission(android.Manifest.permission.MODIFY_DAY_NIGHT_MODE)
public boolean setNightModeActivated(boolean active) {
if (mService != null) {
try {
return mService.setNightModeActivated(active);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return false;
}
/**
* Returns the time of the day Dark theme activates
* <p>
* When night mode is {@link #MODE_NIGHT_CUSTOM}, the system uses
* this time set to activate it automatically.
*/
@NonNull
public LocalTime getCustomNightModeStart() {
if (mService != null) {
try {
return LocalTime.ofNanoOfDay(mService.getCustomNightModeStart() * 1000);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return LocalTime.MIDNIGHT;
}
/**
* Sets the time of the day Dark theme activates
* <p>
* When night mode is {@link #MODE_NIGHT_CUSTOM}, the system uses
* this time set to activate it automatically
* @param time The time of the day Dark theme should activate
*/
public void setCustomNightModeStart(@NonNull LocalTime time) {
if (mService != null) {
try {
mService.setCustomNightModeStart(time.toNanoOfDay() / 1000);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
}
/**
* Returns the time of the day Dark theme deactivates
* <p>
* When night mode is {@link #MODE_NIGHT_CUSTOM}, the system uses
* this time set to deactivate it automatically.
*/
@NonNull
public LocalTime getCustomNightModeEnd() {
if (mService != null) {
try {
return LocalTime.ofNanoOfDay(mService.getCustomNightModeEnd() * 1000);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return LocalTime.MIDNIGHT;
}
/**
* Sets the time of the day Dark theme deactivates
* <p>
* When night mode is {@link #MODE_NIGHT_CUSTOM}, the system uses
* this time set to deactivate it automatically.
* @param time The time of the day Dark theme should deactivate
*/
public void setCustomNightModeEnd(@NonNull LocalTime time) {
if (mService != null) {
try {
mService.setCustomNightModeEnd(time.toNanoOfDay() / 1000);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
}
/**
* Indicates no projection type. Can be used to compare with the {@link ProjectionType} in
* {@link OnProjectionStateChangedListener#onProjectionStateChanged(int, Set)}.
*
* @hide
*/
@SystemApi
@TestApi
public static final int PROJECTION_TYPE_NONE = 0x0000;
/**
* Automotive projection prevents degradation of GPS to save battery, routes incoming calls to
* the automotive role holder, etc. For use with {@link #requestProjection(int)} and
* {@link #clearProjectionState(int)}.
*
* @hide
*/
@SystemApi
@TestApi
public static final int PROJECTION_TYPE_AUTOMOTIVE = 0x0001;
/**
* Indicates all projection types. For use with
* {@link #addOnProjectionStateChangedListener(int, Executor, OnProjectionStateChangedListener)}
* and {@link #getProjectingPackages(int)}.
*
* @hide
*/
@SystemApi
@TestApi
public static final int PROJECTION_TYPE_ALL = -1; // All bits on
/** @hide */
@IntDef(prefix = {"PROJECTION_TYPE_"}, value = {
PROJECTION_TYPE_NONE,
PROJECTION_TYPE_AUTOMOTIVE,
PROJECTION_TYPE_ALL,
})
@Retention(RetentionPolicy.SOURCE)
public @interface ProjectionType {
}
/**
* Sets the given {@link ProjectionType}.
*
* Caller must have {@link android.Manifest.permission.TOGGLE_AUTOMOTIVE_PROJECTION} if
* argument is {@link #PROJECTION_TYPE_AUTOMOTIVE}.
* @param projectionType the type of projection to request. This must be a single
* {@link ProjectionType} and cannot be a bitmask.
* @return true if the projection was successfully set
* @throws IllegalArgumentException if passed {@link #PROJECTION_TYPE_NONE},
* {@link #PROJECTION_TYPE_ALL}, or any combination of more than one {@link ProjectionType}.
*
* @hide
*/
@SystemApi
@TestApi
@RequiresPermission(value = android.Manifest.permission.TOGGLE_AUTOMOTIVE_PROJECTION,
conditional = true)
public boolean requestProjection(@ProjectionType int projectionType) {
if (mService != null) {
try {
return mService.requestProjection(new Binder(), projectionType,
mContext.getOpPackageName());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return false;
}
/**
* Releases the given {@link ProjectionType}.
*
* Caller must have {@link android.Manifest.permission.TOGGLE_AUTOMOTIVE_PROJECTION} if
* argument is {@link #PROJECTION_TYPE_AUTOMOTIVE}.
* @param projectionType the type of projection to release. This must be a single
* {@link ProjectionType} and cannot be a bitmask.
* @return true if the package had set projection and it was successfully released
* @throws IllegalArgumentException if passed {@link #PROJECTION_TYPE_NONE},
* {@link #PROJECTION_TYPE_ALL}, or any combination of more than one {@link ProjectionType}.
*
* @hide
*/
@SystemApi
@TestApi
@RequiresPermission(value = android.Manifest.permission.TOGGLE_AUTOMOTIVE_PROJECTION,
conditional = true)
public boolean releaseProjection(@ProjectionType int projectionType) {
if (mService != null) {
try {
return mService.releaseProjection(projectionType, mContext.getOpPackageName());
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return false;
}
/**
* Gets the packages that are currently projecting.
*
* @param projectionType the {@link ProjectionType}s to consider when computing which packages
* are projecting. Use {@link #PROJECTION_TYPE_ALL} to get all projecting
* packages.
*
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.READ_PROJECTION_STATE)
@NonNull
public Set<String> getProjectingPackages(@ProjectionType int projectionType) {
if (mService != null) {
try {
return new ArraySet<>(mService.getProjectingPackages(projectionType));
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return Set.of();
}
/**
* Gets the {@link ProjectionType}s that are currently active.
*
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.READ_PROJECTION_STATE)
public @ProjectionType int getActiveProjectionTypes() {
if (mService != null) {
try {
return mService.getActiveProjectionTypes();
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
return PROJECTION_TYPE_NONE;
}
/**
* Configures the listener to receive callbacks when the packages projecting using the given
* {@link ProjectionType}s change.
*
* @param projectionType one or more {@link ProjectionType}s to listen for changes regarding
* @param executor an {@link Executor} on which to invoke the callbacks
* @param listener the {@link OnProjectionStateChangedListener} to add
*
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.READ_PROJECTION_STATE)
public void addOnProjectionStateChangedListener(@ProjectionType int projectionType,
@NonNull @CallbackExecutor Executor executor,
@NonNull OnProjectionStateChangedListener listener) {
synchronized (mLock) {
if (mProjectionStateListenerMap.containsKey(listener)) {
Slog.i(TAG, "Attempted to add listener that was already added.");
return;
}
if (mService != null) {
InnerListener innerListener = new InnerListener(executor, listener,
mOnProjectionStateChangedListenerResourceManager);
try {
mService.addOnProjectionStateChangedListener(innerListener, projectionType);
mProjectionStateListenerMap.put(listener, innerListener);
} catch (RemoteException e) {
mOnProjectionStateChangedListenerResourceManager.remove(innerListener);
throw e.rethrowFromSystemServer();
}
}
}
}
/**
* Removes the listener so it stops receiving updates for all {@link ProjectionType}s.
*
* @param listener the {@link OnProjectionStateChangedListener} to remove
*
* @hide
*/
@SystemApi
@RequiresPermission(android.Manifest.permission.READ_PROJECTION_STATE)
public void removeOnProjectionStateChangedListener(
@NonNull OnProjectionStateChangedListener listener) {
synchronized (mLock) {
InnerListener innerListener = mProjectionStateListenerMap.get(listener);
if (innerListener == null) {
Slog.i(TAG, "Attempted to remove listener that was not added.");
return;
}
if (mService != null) {
try {
mService.removeOnProjectionStateChangedListener(innerListener);
} catch (RemoteException e) {
throw e.rethrowFromSystemServer();
}
}
mProjectionStateListenerMap.remove(listener);
mOnProjectionStateChangedListenerResourceManager.remove(innerListener);
}
}
private static class InnerListener extends IOnProjectionStateChangedListener.Stub {
private final WeakReference<OnProjectionStateChangedListenerResourceManager>
mResourceManager;
private InnerListener(@NonNull Executor executor,
@NonNull OnProjectionStateChangedListener outerListener,
@NonNull OnProjectionStateChangedListenerResourceManager resourceManager) {
resourceManager.put(this, executor, outerListener);
mResourceManager = new WeakReference<>(resourceManager);
}
@Override
public void onProjectionStateChanged(int activeProjectionTypes,
List<String> projectingPackages) {
OnProjectionStateChangedListenerResourceManager resourceManager =
mResourceManager.get();
if (resourceManager == null) {
Slog.w(TAG, "Can't execute onProjectionStateChanged, resource manager is gone.");
return;
}
OnProjectionStateChangedListener outerListener = resourceManager.getOuterListener(this);
Executor executor = resourceManager.getExecutor(this);
if (outerListener == null || executor == null) {
Slog.w(TAG, "Can't execute onProjectionStatechanged, references are null.");
return;
}
executor.execute(PooledLambda.obtainRunnable(
OnProjectionStateChangedListener::onProjectionStateChanged,
outerListener,
activeProjectionTypes,
new ArraySet<>(projectingPackages)).recycleOnUse());
}
}
/**
* Wrapper class that ensures we don't leak {@link Activity} or other large {@link Context} in
* which this {@link UiModeManager} resides if/when it ends without unregistering associated
* callback objects.
*/
private static class OnProjectionStateChangedListenerResourceManager {
private final Map<InnerListener, OnProjectionStateChangedListener> mOuterListenerMap =
new ArrayMap<>(1);
private final Map<InnerListener, Executor> mExecutorMap = new ArrayMap<>(1);
void put(@NonNull InnerListener innerListener, @NonNull Executor executor,
OnProjectionStateChangedListener outerListener) {
mOuterListenerMap.put(innerListener, outerListener);
mExecutorMap.put(innerListener, executor);
}
void remove(InnerListener innerListener) {
mOuterListenerMap.remove(innerListener);
mExecutorMap.remove(innerListener);
}
OnProjectionStateChangedListener getOuterListener(@NonNull InnerListener innerListener) {
return mOuterListenerMap.get(innerListener);
}
Executor getExecutor(@NonNull InnerListener innerListener) {
return mExecutorMap.get(innerListener);
}
}
}
|