summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
author Fabrice Di Meglio <fdimeglio@google.com> 2012-07-27 14:08:16 -0700
committer Android (Google) Code Review <android-gerrit@google.com> 2012-07-27 14:08:16 -0700
commitbad7eed8aa27fa1c0b417b805b47881a1ec532d7 (patch)
tree8d93894df6e183baaee589202317d237ce395ef0
parent5b5a6579cf384643686f6bd476003fb4b106963a (diff)
parenta4c1030870d8c91b6d871922c3e6962323700f25 (diff)
Merge "Add removeRule() to RelativeLayout LayoutParams" into jb-mr1-dev
-rw-r--r--api/current.txt1
-rw-r--r--core/java/android/widget/RelativeLayout.java15
2 files changed, 16 insertions, 0 deletions
diff --git a/api/current.txt b/api/current.txt
index c910bd02cf40..b1b0ae6b380d 100644
--- a/api/current.txt
+++ b/api/current.txt
@@ -28452,6 +28452,7 @@ package android.widget {
method public void addRule(int, int);
method public java.lang.String debug(java.lang.String);
method public int[] getRules();
+ method public void removeRule(int);
field public boolean alignWithParent;
}
diff --git a/core/java/android/widget/RelativeLayout.java b/core/java/android/widget/RelativeLayout.java
index a811cc2eb14b..43519dfaa51b 100644
--- a/core/java/android/widget/RelativeLayout.java
+++ b/core/java/android/widget/RelativeLayout.java
@@ -1306,6 +1306,21 @@ public class RelativeLayout extends ViewGroup {
mRulesChanged = true;
}
+ /**
+ * Removes a layout rule to be interpreted by the RelativeLayout.
+ *
+ * @param verb One of the verbs defined by
+ * {@link android.widget.RelativeLayout RelativeLayout}, such as
+ * ALIGN_WITH_PARENT_LEFT.
+ * @see #addRule(int)
+ * @see #addRule(int, int)
+ */
+ public void removeRule(int verb) {
+ mRules[verb] = 0;
+ mInitialRules[verb] = 0;
+ mRulesChanged = true;
+ }
+
private boolean hasRelativeRules() {
return (mInitialRules[START_OF] != 0 || mInitialRules[END_OF] != 0 ||
mInitialRules[ALIGN_START] != 0 || mInitialRules[ALIGN_END] != 0 ||