summaryrefslogtreecommitdiffstats
path: root/src/com/android/launcher3/CellLayout.java
diff options
context:
space:
mode:
authorSunny Goyal <sunnygoyal@google.com>2016-02-11 22:08:45 +0000
committerAndroid (Google) Code Review <android-gerrit@google.com>2016-02-11 22:08:45 +0000
commit8ddb3909142b3f215573a891f159005acd85cfb8 (patch)
tree14cfe250c08b691f552df1691690c06124292f13 /src/com/android/launcher3/CellLayout.java
parente759e4de5fb05081cc532deef93457866d85de8b (diff)
parent4ffec48dec5da7bcf719ac0c37ee5e58f9ea2c1a (diff)
downloadandroid_packages_apps_Trebuchet-8ddb3909142b3f215573a891f159005acd85cfb8.tar.gz
android_packages_apps_Trebuchet-8ddb3909142b3f215573a891f159005acd85cfb8.tar.bz2
android_packages_apps_Trebuchet-8ddb3909142b3f215573a891f159005acd85cfb8.zip
Merge "Making some view properties exported. These will be visible in hierarchy viewer" into ub-launcher3-calgary
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 d283a328f..a20a08093 100644
--- a/src/com/android/launcher3/CellLayout.java
+++ b/src/com/android/launcher3/CellLayout.java
@@ -73,17 +73,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;