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

Commit de967a23 authored by Sunny Goyal's avatar Sunny Goyal
Browse files

Disabling alpha layer on some views

Change-Id: Ide1d5951ea80080f8fea8f32a76487b646b4f958
(cherry picked from commit 2020b20c)
parent 71142fa4
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -31,8 +31,6 @@

    <include layout="@layout/all_apps_floating_header" />

    <!-- Note: we are reusing/repurposing a system attribute for search layout, because of a
     platform bug, which prevents using custom attributes in <include> tag -->
    <include
        android:id="@id/search_container_all_apps"
        layout="@layout/search_container_all_apps"/>
+0 −4
Original line number Diff line number Diff line
@@ -174,10 +174,6 @@ public class FastBitmapDrawable extends Drawable {
        return getBounds().height();
    }

    public Bitmap getBitmap() {
        return mBitmap;
    }

    @Override
    public boolean isStateful() {
        return true;
+5 −0
Original line number Diff line number Diff line
@@ -76,4 +76,9 @@ public class AllAppsPagedView extends PagedView<PersonalWorkSlidingTabStrip> {
            super.determineScrollingStart(ev);
        }
    }

    @Override
    public boolean hasOverlappingRendering() {
        return false;
    }
}
+4 −0
Original line number Diff line number Diff line
@@ -415,4 +415,8 @@ public class AllAppsRecyclerView extends BaseRecyclerView implements LogContaine
                y + mEmptySearchBackground.getIntrinsicHeight());
    }

    @Override
    public boolean hasOverlappingRendering() {
        return false;
    }
}
+5 −0
Original line number Diff line number Diff line
@@ -237,6 +237,11 @@ public class FloatingHeaderView extends LinearLayout implements
    public boolean hasVisibleContent() {
        return false;
    }

    @Override
    public boolean hasOverlappingRendering() {
        return false;
    }
}

Loading