diff options
| author | Griff Hazen <griff@google.com> | 2014-02-10 18:01:27 +0000 |
|---|---|---|
| committer | Android Git Automerger <android-git-automerger@android.com> | 2014-02-10 18:01:27 +0000 |
| commit | 9b4ee2f334d07bc120026f6b8035e7a419f31910 (patch) | |
| tree | 8425206ef0b77397c6b4b1cf185375ec4b694e74 /core/java | |
| parent | 1a738594899bc0abb34f3255d111683de607e6cb (diff) | |
| parent | edb555edceaf51f7ef40e35257a4b00c06a68e72 (diff) | |
am edb555ed: am 92ade49e: Merge "Fix ActivityView layout bug." into klp-modular-dev
* commit 'edb555edceaf51f7ef40e35257a4b00c06a68e72':
Fix ActivityView layout bug.
Diffstat (limited to 'core/java')
| -rw-r--r-- | core/java/android/app/ActivityView.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/app/ActivityView.java b/core/java/android/app/ActivityView.java index ad384898407e..8acd19beea01 100644 --- a/core/java/android/app/ActivityView.java +++ b/core/java/android/app/ActivityView.java @@ -77,7 +77,7 @@ public class ActivityView extends ViewGroup { @Override protected void onLayout(boolean changed, int l, int t, int r, int b) { - mTextureView.layout(l, t, r, b); + mTextureView.layout(0, 0, r - l, b - t); } @Override |
