diff options
Diffstat (limited to 'layoutlib_api/src/com/android/layoutlib/api/LayoutScene.java')
-rw-r--r-- | layoutlib_api/src/com/android/layoutlib/api/LayoutScene.java | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/layoutlib_api/src/com/android/layoutlib/api/LayoutScene.java b/layoutlib_api/src/com/android/layoutlib/api/LayoutScene.java index 8e0fe73..85c7365 100644 --- a/layoutlib_api/src/com/android/layoutlib/api/LayoutScene.java +++ b/layoutlib_api/src/com/android/layoutlib/api/LayoutScene.java @@ -19,6 +19,7 @@ package com.android.layoutlib.api; import com.android.layoutlib.api.SceneResult.LayoutStatus; import java.awt.image.BufferedImage; +import java.util.Map; /** * An object allowing interaction with an Android layout. @@ -81,6 +82,17 @@ public class LayoutScene { return null; } + + /** + * Returns a map of (XML attribute name, attribute value) containing only default attribute + * values, for the given view Object. + * @param viewObject the view object. + * @return a map of the default property values or null. + */ + public Map<String, String> getDefaultViewPropertyValues(Object viewObject) { + return null; + } + /** * Re-renders the layout as-is. * In case of success, this should be followed by calls to {@link #getRootView()} and |