Last active
October 20, 2015 09:40
-
-
Save vivekgidmare/45bc13f621bda1b5b860 to your computer and use it in GitHub Desktop.
Transparent StatusBar,Actionar Hack
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" | |
| xmlns:app="http://schemas.android.com/apk/res-auto" | |
| android:id="@+id/drawer_layout" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:fitsSystemWindows="true"> | |
| <android.support.design.widget.AppBarLayout | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:fitsSystemWindows="true" | |
| android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> | |
| <android.support.design.widget.CollapsingToolbarLayout | |
| android:id="@+id/offer_list_collapsing" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:fitsSystemWindows="true" | |
| android:minHeight="?attr/actionBarSize" | |
| app:layout_scrollFlags="scroll|enterAlwaysCollapsed|enterAlways"> | |
| <FrameLayout | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" | |
| android:background="@color/gray_fb" | |
| android:fitsSystemWindows="true"> | |
| <android.support.v7.widget.RecyclerView | |
| android:id="@+id/recyclerView_theme_products" | |
| android:layout_width="match_parent" | |
| android:layout_height="match_parent" /> | |
| <TextView | |
| android:id="@+id/error_textview" | |
| android:layout_width="wrap_content" | |
| android:layout_height="wrap_content" | |
| android:layout_centerInParent="true" | |
| android:gravity="center" | |
| android:text="" | |
| android:textColor="@color/text_color_gray" | |
| android:textSize="18sp" | |
| android:visibility="gone" /> | |
| </FrameLayout> | |
| <android.support.v7.widget.Toolbar | |
| android:id="@+id/extended_toolbar" | |
| android:layout_width="match_parent" | |
| android:layout_height="@dimen/toolbar_size" | |
| android:fitsSystemWindows="true" | |
| app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> | |
| </android.support.design.widget.CollapsingToolbarLayout> | |
| </android.support.design.widget.AppBarLayout> | |
| </android.support.v4.widget.DrawerLayout> | |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Java Code