在ImageButton上从一个州到另一个州的Glow动画

时间:2012-10-24 16:42:50

标签: android animation imagebutton glow

我有一个ImageButton,它有两个状态(选中,未选中),它使用选择器更改drawable。

我研究过使用AlphaAnimation来制作类似效果的效果,但是当它从alpha = 0开始时,它会使背景可见,我不想要它。

我需要有两个图像在彼此之上,而alpha动画只是顶部的一个。

我该怎么做?

谢谢!

1 个答案:

答案 0 :(得分:0)

<RelativeLayout xmlns:tools="http://schemas.android.com/tools"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="200dp"
android:layout_height="50dp"
android:layout_gravity="center_vertical|center_horizontal"
android:background="#FFFFFF" >

<ImageView
    android:id="@+id/background_image"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FFFFFF" />


<Button
    android:id="@+id/button_alpha"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true" />