Making some view properties exported.

These will be visible in hierarchy viewer

Change-Id: I940724a7f61d67b8502d77be203a94875bc92668
This commit is contained in:
Sunny Goyal
2016-02-09 11:28:52 -08:00
parent 4ed751e52b
commit 4ffec48dec
13 changed files with 51 additions and 0 deletions

View File

@@ -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;