commit | 24691e4b2ad30b35c9559bbe01bcc0636ae8c593 | [log] [tgz] |
---|---|---|
author | Samuel Fufa <sfufa@google.com> | Thu Jan 28 15:41:12 2021 +0000 |
committer | Android (Google) Code Review <android-gerrit@google.com> | Thu Jan 28 15:41:12 2021 +0000 |
tree | 4502fd9ef8a361d9c3dbd3ccd38c2a5f1ed1c1e4 | |
parent | d2db4cb39116f3f4498c09b8cd755bc332f5b4d4 [diff] | |
parent | 045f47f812a39cc10387e943cfa924539a22172f [diff] |
Merge "Add Widget related layout types to LayoutType" into sc-dev
diff --git a/searchuilib/src/com/android/app/search/LayoutType.java b/searchuilib/src/com/android/app/search/LayoutType.java index 7208449..d1accfb 100644 --- a/searchuilib/src/com/android/app/search/LayoutType.java +++ b/searchuilib/src/com/android/app/search/LayoutType.java
@@ -49,6 +49,7 @@ "icon_texts_button"; + public static final String THUMBNAIL = "thumbnail"; // TODO: add diagram public static final String ICON_SLICE = "slice";
diff --git a/searchuilib/src/com/android/app/search/ResultType.java b/searchuilib/src/com/android/app/search/ResultType.java index 698f5b8..670912a 100644 --- a/searchuilib/src/com/android/app/search/ResultType.java +++ b/searchuilib/src/com/android/app/search/ResultType.java
@@ -31,4 +31,5 @@ public static final int TIPS = 1 << 6; public static final int WIDGETS = 1 << 7; public static final int PLAY = 1 << 8; + public static final int SUGGEST = 1 << 9; }