Having an ActionBar in blend mode, the following works for me:
<GridView android:layout_width="match_parent" android:layout_height="match_parent" android:paddingTop="?android:attr/actionBarSize" android:clipToPadding="false" android:numColumns="auto_fit" android:columnWidth="120dp" android:verticalSpacing="8dp" android:horizontalSpacing="8dp" android:stretchMode="columnWidth" android:gravity="center" android:id="@+id/gridLibrary" />
The most important lines are here: android: paddingTop and android: clipToPadding . In my application, when I open an action using the gridview above, the first line is completely visible. Then, when I scroll down, the ActionBar hides and the gridview fills the entire screen.
source share