Loading cmds/statsd/src/atoms.proto +37 −0 Original line number Diff line number Diff line Loading @@ -319,6 +319,8 @@ message Atom { 217 [(log_from_module) = "permissioncontroller"]; PermissionAppsFragmentViewed permission_apps_fragment_viewed = 218 [(log_from_module) = "permissioncontroller"]; ExclusionRectStateChanged exclusion_rect_state_changed = 223; BackGesture back_gesture_reported_reported = 224; } // Pulled events will start at field 10000. Loading Loading @@ -2500,6 +2502,41 @@ message PhoneStateChanged { optional State state = 1; } message BackGesture { enum BackType { DEFAULT_BACK_TYPE = 0; COMPLETED = 1; COMPLETED_REJECTED = 2; // successful because coming from rejected area INCOMPLETE_EXCLUDED = 3; // would have been successful but in the exclusion area INCOMPLETE = 4; } optional BackType type = 1; optional int32 y_coordinate = 2; // y coordinate for ACTION_DOWN event enum WindowHorizontalLocation { DEFAULT_LOCATION = 0; LEFT = 1; RIGHT = 2; } optional WindowHorizontalLocation x_location = 3; } message ExclusionRectStateChanged { optional string component_name = 1; // if not available, simply packageName optional int32 requested_height = 2; // px optional int32 rejected_height = 3; // px enum WindowHorizontalLocation { DEFAULT_LOCATION = 0; LEFT = 1; RIGHT = 2; } optional WindowHorizontalLocation x_location = 4; optional bool landscape = 5; optional bool splitscreen = 6; optional int32 duration_millis = 7; } message LauncherUIChanged { optional android.stats.launcher.LauncherAction action = 1; optional android.stats.launcher.LauncherState src_state = 2; Loading core/java/android/view/View.java +7 −0 Original line number Diff line number Diff line Loading @@ -11085,6 +11085,13 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * * <p>Do not modify the provided list after this method is called.</p> * * <p>Note: the system will put a limit of <code>200dp</code> on the vertical extent of the * exclusions it takes into account. The limit does not apply while the navigation * bar is {@link #SYSTEM_UI_FLAG_IMMERSIVE_STICKY stickily} hidden, nor to the * {@link android.inputmethodservice.InputMethodService input method} and * {@link Intent#CATEGORY_HOME home activity}. * </p> * * @param rects A list of precision gesture regions that this view needs to function correctly */ public void setSystemGestureExclusionRects(@NonNull List<Rect> rects) { core/java/android/view/WindowInsets.java +9 −0 Original line number Diff line number Diff line Loading @@ -35,6 +35,7 @@ import android.annotation.IntRange; import android.annotation.NonNull; import android.annotation.Nullable; import android.annotation.UnsupportedAppUsage; import android.content.Intent; import android.graphics.Insets; import android.graphics.Rect; import android.util.SparseArray; Loading Loading @@ -644,6 +645,14 @@ public final class WindowInsets { * {@link View#setSystemGestureExclusionRects} outside of the * {@link #getMandatorySystemGestureInsets() mandatory system gesture insets}. * * <p>Note: the system will put a limit of <code>200dp</code> on the vertical extent of the * exclusions it takes into account. The limit does not apply while the navigation * bar is {@link View#SYSTEM_UI_FLAG_IMMERSIVE_STICKY stickily} hidden, nor to the * {@link android.inputmethodservice.InputMethodService input method} and * {@link Intent#CATEGORY_HOME home activity}. * </p> * * * <p>Simple taps are guaranteed to reach the window even within the system gesture insets, * as long as they are outside the {@link #getTappableElementInsets() system window insets}. * Loading core/res/res/values-as/strings.xml +1 −2 Original line number Diff line number Diff line Loading @@ -95,8 +95,7 @@ <string name="notification_channel_voice_mail" msgid="3954099424160511919">"ভইচমেইলৰ বাৰ্তাসমূহ"</string> <string name="notification_channel_wfc" msgid="2130802501654254801">"ৱাই-ফাই কলিং"</string> <string name="notification_channel_sim" msgid="4052095493875188564">"ছিমৰ স্থিতি"</string> <!-- no translation found for notification_channel_sim_high_prio (1787666807724243207) --> <skip /> <string name="notification_channel_sim_high_prio" msgid="1787666807724243207">"উচ্চ অগ্ৰাধিকাৰযুক্ত ছিমৰ স্থিতি"</string> <string name="peerTtyModeFull" msgid="6165351790010341421">"নেটৱৰ্ক পীয়েৰে TTY ম\'ড FULLলৈ সলনি কৰিবলৈ অনুৰোধ কৰিছে"</string> <string name="peerTtyModeHco" msgid="5728602160669216784">"নেটৱৰ্ক পীয়েৰে TTY ম\'ড HCOলৈ সলনি কৰিবলৈ অনুৰোধ কৰিছে"</string> <string name="peerTtyModeVco" msgid="1742404978686538049">"নেটৱৰ্ক পীয়েৰে TTY ম\'ড VCO লৈ সলনি কৰিবলৈ অনুৰোধ কৰিছে"</string> Loading core/res/res/values-bn/strings.xml +1 −2 Original line number Diff line number Diff line Loading @@ -95,8 +95,7 @@ <string name="notification_channel_voice_mail" msgid="3954099424160511919">"ভয়েসমেল মেসেজ"</string> <string name="notification_channel_wfc" msgid="2130802501654254801">"ওয়াই-ফাই কলিং"</string> <string name="notification_channel_sim" msgid="4052095493875188564">"সিম কার্ডের স্টাটাস"</string> <!-- no translation found for notification_channel_sim_high_prio (1787666807724243207) --> <skip /> <string name="notification_channel_sim_high_prio" msgid="1787666807724243207">"উচ্চ প্রায়রিটি সিম স্ট্যাটাস"</string> <string name="peerTtyModeFull" msgid="6165351790010341421">"পির TTY মোড FULL অনুরোধ করেছে"</string> <string name="peerTtyModeHco" msgid="5728602160669216784">"পির TTY মোড HCO অনুরোধ করেছে"</string> <string name="peerTtyModeVco" msgid="1742404978686538049">"পির TTY মোড VCO অনুরোধ করেছে"</string> Loading Loading
cmds/statsd/src/atoms.proto +37 −0 Original line number Diff line number Diff line Loading @@ -319,6 +319,8 @@ message Atom { 217 [(log_from_module) = "permissioncontroller"]; PermissionAppsFragmentViewed permission_apps_fragment_viewed = 218 [(log_from_module) = "permissioncontroller"]; ExclusionRectStateChanged exclusion_rect_state_changed = 223; BackGesture back_gesture_reported_reported = 224; } // Pulled events will start at field 10000. Loading Loading @@ -2500,6 +2502,41 @@ message PhoneStateChanged { optional State state = 1; } message BackGesture { enum BackType { DEFAULT_BACK_TYPE = 0; COMPLETED = 1; COMPLETED_REJECTED = 2; // successful because coming from rejected area INCOMPLETE_EXCLUDED = 3; // would have been successful but in the exclusion area INCOMPLETE = 4; } optional BackType type = 1; optional int32 y_coordinate = 2; // y coordinate for ACTION_DOWN event enum WindowHorizontalLocation { DEFAULT_LOCATION = 0; LEFT = 1; RIGHT = 2; } optional WindowHorizontalLocation x_location = 3; } message ExclusionRectStateChanged { optional string component_name = 1; // if not available, simply packageName optional int32 requested_height = 2; // px optional int32 rejected_height = 3; // px enum WindowHorizontalLocation { DEFAULT_LOCATION = 0; LEFT = 1; RIGHT = 2; } optional WindowHorizontalLocation x_location = 4; optional bool landscape = 5; optional bool splitscreen = 6; optional int32 duration_millis = 7; } message LauncherUIChanged { optional android.stats.launcher.LauncherAction action = 1; optional android.stats.launcher.LauncherState src_state = 2; Loading
core/java/android/view/View.java +7 −0 Original line number Diff line number Diff line Loading @@ -11085,6 +11085,13 @@ public class View implements Drawable.Callback, KeyEvent.Callback, * * <p>Do not modify the provided list after this method is called.</p> * * <p>Note: the system will put a limit of <code>200dp</code> on the vertical extent of the * exclusions it takes into account. The limit does not apply while the navigation * bar is {@link #SYSTEM_UI_FLAG_IMMERSIVE_STICKY stickily} hidden, nor to the * {@link android.inputmethodservice.InputMethodService input method} and * {@link Intent#CATEGORY_HOME home activity}. * </p> * * @param rects A list of precision gesture regions that this view needs to function correctly */ public void setSystemGestureExclusionRects(@NonNull List<Rect> rects) {
core/java/android/view/WindowInsets.java +9 −0 Original line number Diff line number Diff line Loading @@ -35,6 +35,7 @@ import android.annotation.IntRange; import android.annotation.NonNull; import android.annotation.Nullable; import android.annotation.UnsupportedAppUsage; import android.content.Intent; import android.graphics.Insets; import android.graphics.Rect; import android.util.SparseArray; Loading Loading @@ -644,6 +645,14 @@ public final class WindowInsets { * {@link View#setSystemGestureExclusionRects} outside of the * {@link #getMandatorySystemGestureInsets() mandatory system gesture insets}. * * <p>Note: the system will put a limit of <code>200dp</code> on the vertical extent of the * exclusions it takes into account. The limit does not apply while the navigation * bar is {@link View#SYSTEM_UI_FLAG_IMMERSIVE_STICKY stickily} hidden, nor to the * {@link android.inputmethodservice.InputMethodService input method} and * {@link Intent#CATEGORY_HOME home activity}. * </p> * * * <p>Simple taps are guaranteed to reach the window even within the system gesture insets, * as long as they are outside the {@link #getTappableElementInsets() system window insets}. * Loading
core/res/res/values-as/strings.xml +1 −2 Original line number Diff line number Diff line Loading @@ -95,8 +95,7 @@ <string name="notification_channel_voice_mail" msgid="3954099424160511919">"ভইচমেইলৰ বাৰ্তাসমূহ"</string> <string name="notification_channel_wfc" msgid="2130802501654254801">"ৱাই-ফাই কলিং"</string> <string name="notification_channel_sim" msgid="4052095493875188564">"ছিমৰ স্থিতি"</string> <!-- no translation found for notification_channel_sim_high_prio (1787666807724243207) --> <skip /> <string name="notification_channel_sim_high_prio" msgid="1787666807724243207">"উচ্চ অগ্ৰাধিকাৰযুক্ত ছিমৰ স্থিতি"</string> <string name="peerTtyModeFull" msgid="6165351790010341421">"নেটৱৰ্ক পীয়েৰে TTY ম\'ড FULLলৈ সলনি কৰিবলৈ অনুৰোধ কৰিছে"</string> <string name="peerTtyModeHco" msgid="5728602160669216784">"নেটৱৰ্ক পীয়েৰে TTY ম\'ড HCOলৈ সলনি কৰিবলৈ অনুৰোধ কৰিছে"</string> <string name="peerTtyModeVco" msgid="1742404978686538049">"নেটৱৰ্ক পীয়েৰে TTY ম\'ড VCO লৈ সলনি কৰিবলৈ অনুৰোধ কৰিছে"</string> Loading
core/res/res/values-bn/strings.xml +1 −2 Original line number Diff line number Diff line Loading @@ -95,8 +95,7 @@ <string name="notification_channel_voice_mail" msgid="3954099424160511919">"ভয়েসমেল মেসেজ"</string> <string name="notification_channel_wfc" msgid="2130802501654254801">"ওয়াই-ফাই কলিং"</string> <string name="notification_channel_sim" msgid="4052095493875188564">"সিম কার্ডের স্টাটাস"</string> <!-- no translation found for notification_channel_sim_high_prio (1787666807724243207) --> <skip /> <string name="notification_channel_sim_high_prio" msgid="1787666807724243207">"উচ্চ প্রায়রিটি সিম স্ট্যাটাস"</string> <string name="peerTtyModeFull" msgid="6165351790010341421">"পির TTY মোড FULL অনুরোধ করেছে"</string> <string name="peerTtyModeHco" msgid="5728602160669216784">"পির TTY মোড HCO অনুরোধ করেছে"</string> <string name="peerTtyModeVco" msgid="1742404978686538049">"পির TTY মোড VCO অনুরোধ করেছে"</string> Loading