0

当我使用按钮使用 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"
        > 
4

0 回答 0