summaryrefslogtreecommitdiffstats
path: root/policy/src
diff options
context:
space:
mode:
authorGeorge Mount <mount@google.com>2014-06-30 10:43:28 -0700
committerGeorge Mount <mount@google.com>2014-06-30 23:16:30 +0000
commit39f09e23d4cb46fed32c5c5f4c2e2bf5be6b3c54 (patch)
treeb74bfd6ef7d4114b1919cb51f991ded36ff7c6a9 /policy/src
parentd87c7767d9ca40022c09e070539d7b61413d94ae (diff)
downloadframeworks_base-39f09e23d4cb46fed32c5c5f4c2e2bf5be6b3c54.zip
frameworks_base-39f09e23d4cb46fed32c5c5f4c2e2bf5be6b3c54.tar.gz
frameworks_base-39f09e23d4cb46fed32c5c5f4c2e2bf5be6b3c54.tar.bz2
Don't throw exception for root scene transitions.
Bug 13745751 Change-Id: I7bb3cbabf4f402b38f5aa57ad0ee3b4320fa83cc
Diffstat (limited to 'policy/src')
-rw-r--r--policy/src/com/android/internal/policy/impl/PhoneWindow.java3
1 files changed, 1 insertions, 2 deletions
diff --git a/policy/src/com/android/internal/policy/impl/PhoneWindow.java b/policy/src/com/android/internal/policy/impl/PhoneWindow.java
index 5e1aa3b..149f4aa 100644
--- a/policy/src/com/android/internal/policy/impl/PhoneWindow.java
+++ b/policy/src/com/android/internal/policy/impl/PhoneWindow.java
@@ -395,8 +395,7 @@ public class PhoneWindow extends Window implements MenuBuilder.Callback {
}
if (hasFeature(FEATURE_CONTENT_TRANSITIONS)) {
// TODO Augment the scenes/transitions API to support this.
- throw new UnsupportedOperationException(
- "addContentView does not support content transitions");
+ Log.v(TAG, "addContentView does not support content transitions");
}
mContentParent.addView(view, params);
final Callback cb = getCallback();