Android库:EtsyBlur
jopen
9年前
EtsyBlur 是一个Android库,便于开发者们在 Etsy 应用程序上增加一个类似玻璃的效果。
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:id="@+id/drawer_layout" android:layout_width="match_parent" android:layout_height="match_parent" tools:context=".MainActivity"> <FrameLayout android:id="@id/container" android:layout_width="match_parent" android:layout_height="match_parent" /> <!-- needed w/this id for EtsyLib to work --> <ImageView android:id="@id/blur_view" android:layout_width="match_parent" android:layout_height="match_parent" android:scaleType="centerCrop" android:visibility="gone"> </ImageView> <fragment android:id="@+id/navigation_drawer" android:layout_width="@dimen/navigation_drawer_width" android:layout_height="match_parent" android:layout_gravity="start" android:name="com.ms.square.android.etsyblurdemo.NavigationDrawerFragment" tools:layout="@layout/fragment_navigation_drawer" /> </android.support.v4.widget.DrawerLayout>