in RelativeLayout.java we find

private void applyHorizontalSizeRules(LayoutParams childParams, int
myWidth) {
...
        if (0 != rules[ALIGN_PARENT_RIGHT]) {
            if (myWidth >= 0) {
                childParams.mRight = myWidth - mPaddingRight -
childParams.rightMargin;
            } else {
                // FIXME uh oh...
            }
        }
}

I guess they still haven't fixed the FIXME yet.

-- 
You received this message because you are subscribed to the Google
Groups "Android Developers" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en

Reply via email to