diff options
author | Dianne Hackborn <hackbod@google.com> | 2013-03-07 00:40:44 +0000 |
---|---|---|
committer | Android Git Automerger <android-git-automerger@android.com> | 2013-03-07 00:40:44 +0000 |
commit | 32884c376fd06799f46ea3b1ded89ba9d21f8f14 (patch) | |
tree | b1a733f16d8362f2c8562a26b598fe642c5f0c71 | |
parent | 07cd3f3f018a32860e183ccdf9253dcc37c630bb (diff) | |
parent | 6fea1665a91dafa49b78d1c92c53bb0fa1736020 (diff) |
am 6fea1665: am 1ab64b81: Merge "Add new sample code for writing a ViewGroup." into jb-mr2-dev
* commit '6fea1665a91dafa49b78d1c92c53bb0fa1736020':
Add new sample code for writing a ViewGroup.
-rw-r--r-- | core/java/android/view/ViewGroup.java | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/core/java/android/view/ViewGroup.java b/core/java/android/view/ViewGroup.java index 078f53ceec8b..5f05f4927d07 100644 --- a/core/java/android/view/ViewGroup.java +++ b/core/java/android/view/ViewGroup.java @@ -70,6 +70,22 @@ import java.util.HashSet; * <a href="{@docRoot}guide/topics/ui/declaring-layout.html">XML Layouts</a> developer * guide.</p></div> * + * <p>Here is a complete implementation of a custom ViewGroup that implements + * a simple {@link android.widget.FrameLayout} along with the ability to stack + * children in left and right gutters.</p> + * + * {@sample development/samples/ApiDemos/src/com/example/android/apis/view/CustomLayout.java + * Complete} + * + * <p>If you are implementing XML layout attributes as shown in the example, this is the + * corresponding definition for them that would go in <code>res/values/attrs.xml</code>:</p> + * + * {@sample development/samples/ApiDemos/res/values/attrs.xml CustomLayout} + * + * <p>Finally the layout manager can be used in an XML layout like so:</p> + * + * {@sample development/samples/ApiDemos/res/layout/custom_layout.xml Complete} + * * @attr ref android.R.styleable#ViewGroup_clipChildren * @attr ref android.R.styleable#ViewGroup_clipToPadding * @attr ref android.R.styleable#ViewGroup_layoutAnimation |