commit | 348866dad10e77aeb614c165b9f71d9fd2588f87 | [log] [tgz] |
---|---|---|
author | Samuel Fufa <sfufa@google.com> | Fri Apr 16 16:15:29 2021 +0000 |
committer | Automerger Merge Worker <android-build-automerger-merge-worker@system.gserviceaccount.com> | Fri Apr 16 16:15:29 2021 +0000 |
tree | da3795321559d8cdc34c76a96438b9866d901e40 | |
parent | 6fea1f699d3745613f81882e1d31cf4163cdad67 [diff] | |
parent | 649d23ec1b27d5d0c6aa7fa1d1899f9a6c586c20 [diff] |
Merge "introduce medium height layout type" into sc-dev am: 649d23ec1b Original change: https://googleplex-android-review.googlesource.com/c/platform/frameworks/libs/systemui/+/14202717 Change-Id: I8b7404ac2c0fd71f0335c984ab6f55c7edea1a7e
diff --git a/searchuilib/src/com/android/app/search/LayoutType.java b/searchuilib/src/com/android/app/search/LayoutType.java index ab8b6e8..cf27e2b 100644 --- a/searchuilib/src/com/android/app/search/LayoutType.java +++ b/searchuilib/src/com/android/app/search/LayoutType.java
@@ -42,6 +42,7 @@ // will replace ICON_DOUBLE_* ICON_SINGLE_* layouts public static final String ICON_HORIZONTAL_TEXT = "icon_row"; + public static final String HORIZONTAL_MEDIUM_TEXT = "icon_row_medium"; public static final String SMALL_ICON_HORIZONTAL_TEXT = "short_icon_row"; // This layout creates square thumbnail image (currently 3 column) @@ -67,4 +68,7 @@ // horizontal bar to be inserted between fallback search results and low confidence section public static final String EMPTY_DIVIDER = "empty_divider"; + + // layout representing quick calculations + public static final String CALCULATOR = "calculator"; }