在imageView Android中滑动图像

时间:2011-09-02 11:15:12

标签: android android-layout android-emulator

我想在android中创建Sliding Image ImageView。在那个时候我    移动手指在右侧比当前图像移动右侧和    下一个图像显示。当我移动手指时也会做同样的事情    上,下,左。我有一个图像阵列。那里有很多图像......    一个接一个我想要幻灯片中的所有图像......我尝试了许多代码但不是    获得适当的输出......    在我的代码中只有1个ImageView    谁能帮我.....    我也试过这个链接,但没有得到适当的帮助

sliding between images android

先谢谢

1 个答案:

答案 0 :(得分:4)

然后你正在寻找viewflippers。

这些可以帮助您入门,

http://saigeethamn.blogspot.com/2010/05/image-switcher-view-android-developer.html

http://www.warriorpoint.com/blog/2009/05/26/android-switching-screens-in-an-activity-with-animations-using-viewflipper/

http://www.androidguys.com/2008/08/14/flipping-your-views/

http://www.codeshogun.com/blog/2009/04/16/how-to-implement-swipe-action-in-android/

样品。

<Gallery
      android:id="@+id/Gallery01"
      android:layout_width="fill_parent"
      android:layout_height="wrap_content"></Gallery> <ImageSwitcher
      android:id="@+id/ImageSwitcher01"
      android:layout_width="fill_parent"
      android:layout_height="fill_parent"> </ImageSwitcher>

iSwitcher = (ImageSwitcher) findViewById(R.id.ImageSwitcher01);
            iSwitcher.setFactory(this);
            iSwitcher.setInAnimation(AnimationUtils.loadAnimation(this,
                        android.R.anim.fade_in));
            iSwitcher.setOutAnimation(AnimationUtils.loadAnimation(this,
                        android.R.anim.fade_out));