summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/ItemInfoWithIcon.java
diff options
context:
space:
mode:
authorMario Bertschler <bmario@google.com>2017-02-17 12:16:13 -0800
committerMario Bertschler <bmario@google.com>2017-03-03 13:05:57 -0800
commit0fc6f684e730b0137900fe317f2c759c1b3909c7 (patch)
tree05b8a9aa9863127e6f9728c13a71968c9e5ab1c6 /src/com/android/launcher3/ItemInfoWithIcon.java
parent74480b7bca8451eaea64236cb4b4c8e31def6b9b (diff)
downloadandroid_packages_apps_Trebuchet-0fc6f684e730b0137900fe317f2c759c1b3909c7.tar.gz
android_packages_apps_Trebuchet-0fc6f684e730b0137900fe317f2c759c1b3909c7.tar.bz2
android_packages_apps_Trebuchet-0fc6f684e730b0137900fe317f2c759c1b3909c7.zip
App discovery integration in All Apps search
This is the basis for app discovery integration while searching in all apps. This does NOT include binding to the actual service and retrieving results, but instead provides all the UI to show suggested instant apps and apps from a store with star rating and pricing. Change-Id: I1605b52848491acee4ac1d15c0112e6a768363f6
Diffstat (limited to 'src/com/android/launcher3/ItemInfoWithIcon.java')
-rw-r--r--src/com/android/launcher3/ItemInfoWithIcon.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/com/android/launcher3/ItemInfoWithIcon.java b/src/com/android/launcher3/ItemInfoWithIcon.java
index a3d8c6a9d..1e020e258 100644
--- a/src/com/android/launcher3/ItemInfoWithIcon.java
+++ b/src/com/android/launcher3/ItemInfoWithIcon.java
@@ -35,7 +35,9 @@ public abstract class ItemInfoWithIcon extends ItemInfo {
protected ItemInfoWithIcon() { }
- protected ItemInfoWithIcon(ItemInfo info) {
+ protected ItemInfoWithIcon(ItemInfoWithIcon info) {
super(info);
+ iconBitmap = info.iconBitmap;
+ usingLowResIcon = info.usingLowResIcon;
}
}