summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/CellLayout.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-02-09 11:28:52 -0800
committerSunny Goyal <sunnygoyal@google.com>2016-02-09 11:29:34 -0800
commit4ffec48dec5da7bcf719ac0c37ee5e58f9ea2c1a (patch)
tree9a02c6b10848b519e16fd79c84db5d6d5d2c769d /src/com/android/launcher3/CellLayout.java
parent4ed751e52b2cc9bf73baa18825cb8216049bd9c3 (diff)
downloadandroid_packages_apps_Trebuchet-4ffec48dec5da7bcf719ac0c37ee5e58f9ea2c1a.tar.gz
android_packages_apps_Trebuchet-4ffec48dec5da7bcf719ac0c37ee5e58f9ea2c1a.tar.bz2
android_packages_apps_Trebuchet-4ffec48dec5da7bcf719ac0c37ee5e58f9ea2c1a.zip
Making some view properties exported.
These will be visible in hierarchy viewer Change-Id: I940724a7f61d67b8502d77be203a94875bc92668
Diffstat (limited to 'src/com/android/launcher3/CellLayout.java')
-rw-r--r--src/com/android/launcher3/CellLayout.java6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/com/android/launcher3/CellLayout.java b/src/com/android/launcher3/CellLayout.java
index b09723de5..40cdc8016 100644
--- a/src/com/android/launcher3/CellLayout.java
+++ b/src/com/android/launcher3/CellLayout.java
@@ -72,17 +72,23 @@ public class CellLayout extends ViewGroup implements BubbleTextShadowHandler {
private static final boolean LOGD = false;
private Launcher mLauncher;
+ @ViewDebug.ExportedProperty(category = "launcher")
@Thunk int mCellWidth;
+ @ViewDebug.ExportedProperty(category = "launcher")
@Thunk int mCellHeight;
private int mFixedCellWidth;
private int mFixedCellHeight;
+ @ViewDebug.ExportedProperty(category = "launcher")
@Thunk int mCountX;
+ @ViewDebug.ExportedProperty(category = "launcher")
@Thunk int mCountY;
private int mOriginalWidthGap;
private int mOriginalHeightGap;
+ @ViewDebug.ExportedProperty(category = "launcher")
@Thunk int mWidthGap;
+ @ViewDebug.ExportedProperty(category = "launcher")
@Thunk int mHeightGap;
private int mMaxGap;
private boolean mDropPending = false;