【发布时间】:2010-05-20 08:03:37
【问题描述】:
我在 Button 上添加动画,使用 .SetFillAfter(true) 将最后一个视图保留在屏幕上。但是我发现通过触摸屏幕上的Button图标已经无法调用触摸事件功能了(但可以通过触摸原始位置来调用)。
<?xml version="1.0" encoding="utf-8"?>
<AbsoluteLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<Button
android:id ="@+id/button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Move"
/>
</AbsoluteLayout>
anim = AnimationUtils.loadAnimation(this, R.anim.move);
anim.setInterpolator(this, android.R.anim.accelerate_decelerate_interpolator);
【问题讨论】: