diff options
author | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-16 11:21:34 -0800 |
---|---|---|
committer | Android (Google) Code Review <android-gerrit@google.com> | 2009-11-16 11:21:34 -0800 |
commit | 19e420c52dbe42e5b4b8b3580a5e7908cebec89d (patch) | |
tree | 3b7c170e23c7010e32217b92701abd7463f4a691 | |
parent | fa82d97dc67b2c3047ad2abe7553d4a0f47b6e7f (diff) | |
parent | 0da2676ea841ff85b373c2960dd2c497dcf4e441 (diff) | |
download | frameworks_base-19e420c52dbe42e5b4b8b3580a5e7908cebec89d.zip frameworks_base-19e420c52dbe42e5b4b8b3580a5e7908cebec89d.tar.gz frameworks_base-19e420c52dbe42e5b4b8b3580a5e7908cebec89d.tar.bz2 |
Merge change Iae493184 into eclair
* changes:
Minor fix for the parent style computation in the layoutlib.
-rw-r--r-- | tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java | 19 |
1 files changed, 11 insertions, 8 deletions
diff --git a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java index c455977..2df9219 100644 --- a/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java +++ b/tools/layoutlib/bridge/src/com/android/layoutlib/bridge/Bridge.java @@ -675,9 +675,12 @@ public final class Bridge implements ILayoutBridge { name = name.substring(BridgeConstants.PREFIX_ANDROID.length()); } - // at this point we could have the format style/<name>. we want only the name + // at this point we could have the format <type>/<name>. we want only the name as long as + // the type is style. if (name.startsWith(BridgeConstants.REFERENCE_STYLE)) { name = name.substring(BridgeConstants.REFERENCE_STYLE.length()); + } else if (name.indexOf('/') != -1) { + return null; } IResourceValue parent = null; @@ -697,7 +700,7 @@ public final class Bridge implements ILayoutBridge { return (IStyleResourceValue)parent; } - sLogger.error(String.format("Unable to resolve parent style name: ", parentName)); + sLogger.error(String.format("Unable to resolve parent style name: %s", parentName)); return null; } @@ -1069,24 +1072,24 @@ public final class Bridge implements ILayoutBridge { public void wallpaperOffsetsComplete(IBinder window) { // pass for now. } - + @SuppressWarnings("unused") public Bundle sendWallpaperCommand(IBinder window, String action, int x, int y, int z, Bundle extras, boolean sync) { // pass for now. return null; } - + @SuppressWarnings("unused") public void wallpaperCommandComplete(IBinder window, Bundle result) { // pass for now. } - + @SuppressWarnings("unused") public void closeSystemDialogs(String reason) { // pass for now. } - + public IBinder asBinder() { // pass for now. return null; @@ -1151,12 +1154,12 @@ public final class Bridge implements ILayoutBridge { int z, Bundle extras, boolean sync) { // pass for now. } - + @SuppressWarnings("unused") public void closeSystemDialogs(String reason) { // pass for now. } - + public IBinder asBinder() { // pass for now. return null; |