Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit b226bea1 authored by Adam Powell's avatar Adam Powell
Browse files

Fix ActionBar attribute parsing

Lost in some prior refactoring. Also fixes doc builds for the removed
styleable.

Change-Id: Ice27a978cd5c22c6ad1fc0b45557c6cac77b5985
parent 33d0dad1
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
@@ -1224,6 +1224,13 @@ public abstract class ActionBar {

        public LayoutParams(@NonNull Context c, AttributeSet attrs) {
            super(c, attrs);

            TypedArray a = c.obtainStyledAttributes(attrs,
                    com.android.internal.R.styleable.ActionBar_LayoutParams);
            gravity = a.getInt(
                    com.android.internal.R.styleable.ActionBar_LayoutParams_layout_gravity,
                    Gravity.NO_GRAVITY);
            a.recycle();
        }

        public LayoutParams(int width, int height) {
+4 −0
Original line number Diff line number Diff line
@@ -6462,4 +6462,8 @@
        <attr name="layout_gravity" />
    </declare-styleable>

    <declare-styleable name="ActionBar_LayoutParams">
        <attr name="layout_gravity" />
    </declare-styleable>

</resources>