视差效果Android控件:Parallax Everywhere

jopen 10年前

Parallax everywhere (PEW)是一个库用于构建视差效果的Android控件。

Demo


 <!-- add on top parent layout: xmlns:pew="http://schemas.android.com/apk/res-auto" -->         <FrameLayout          android:layout_width="0dp"          android:layout_height="match_parent"          android:layout_gravity="center"          android:layout_margin="10dp"          android:layout_weight="1">            <com.fmsirvent.ParallaxEverywhere.PEWImageView              android:layout_width="match_parent"              android:layout_height="match_parent"              android:layout_gravity="center"              android:layout_margin="10dp"              android:scaleType="centerCrop"              android:src="@drawable/alicante_explanada" />            <com.fmsirvent.ParallaxEverywhere.PEWTextView              android:layout_width="match_parent"              android:layout_height="match_parent"              android:layout_margin="10dp"              android:gravity="bottom|center_horizontal"              android:text="@string/alicante_explanada"              android:textColor="@android:color/white"              pew:block_parallax_x="true"              pew:parallax_x="160dp"              pew:parallax_y="160dp"              pew:reverse="reverseY" />        </FrameLayout>

项目主页:http://www.open-open.com/lib/view/home/1418779362308