Android gridView动画

时间:2012-07-13 18:41:01

标签: android animation gridview

enter image description here我试图在gridView中设置子元素的动画。一切都很顺利,但顶行似乎从背景下翻译而不是在背景上翻译/绘制。

用于gridView的xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" 
android:background="#000000"> 

 <GridView 
    android:id="@+id/gameButton"
    android:layout_width="wrap_content" 
    android:layout_height="wrap_content"
    android:numColumns="4"
    android:layout_centerInParent="true"
    android:gravity="center_horizontal"/>

每个元素上使用的动画

<set xmlns:android="http://schemas.android.com/apk/res/android"
android:shareInterpolator="false">

  <translate
    android:fromYDelta="-25%p"
    android:toYDelta="0%p"
    android:duration="700"
    android:fillAfter="false"
    android:startOffset="50"
    android:interpolator="@android:anim/accelerate_decelerate_interpolator" />

</set>

不是在黑色bg上绘制,而是在某种程度上低于bg

0 个答案:

没有答案