当我使用viewflipper使用按钮时,它会从右向左转换。但是视图在内部移动并再次反弹。想象一下像弹簧效果。我想这是一些错误。 这是xml代码:
left.xml
<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"
android:shape="rectangle">
<gradient
android:startColor="#212121"
android:centerColor="#404040"
android:endColor="#212121"
android:angle="270" />
</shape>
Viewflipper in main layout
<ViewFlipper android:id="@+id/viewflipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:inAnimation="@anim/left"
android:outAnimation="@anim/right"
>