diff options
Diffstat (limited to 'core/java/android/view/View.java')
-rw-r--r-- | core/java/android/view/View.java | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/core/java/android/view/View.java b/core/java/android/view/View.java index 537c474..393fa65 100644 --- a/core/java/android/view/View.java +++ b/core/java/android/view/View.java @@ -45,6 +45,7 @@ import android.os.Parcel; import android.os.Parcelable; import android.os.RemoteException; import android.os.SystemClock; +import android.os.SystemProperties; import android.text.TextUtils; import android.util.AttributeSet; import android.util.FloatProperty; @@ -16914,6 +16915,11 @@ public class View implements Drawable.Callback, Drawable.Callback2, KeyEvent.Cal Drawable mAccessibilityFocusDrawable; /** + * Show where the margins, bounds and layout bounds are for each view. + */ + final boolean mDebugLayout = SystemProperties.getBoolean("debug.layout", false); + + /** * Creates a new set of attachment information with the specified * events handler and thread. * |