我想在android中创建Sliding Image ImageView。在那个时候我 移动手指在右侧比当前图像移动右侧和 下一个图像显示。当我移动手指时也会做同样的事情 上,下,左。我有一个图像阵列。那里有很多图像...... 一个接一个我想要幻灯片中的所有图像......我尝试了许多代码但不是 获得适当的输出...... 在我的代码中只有1个ImageView 谁能帮我..... 我也试过这个链接,但没有得到适当的帮助
sliding between images android
先谢谢
答案 0 :(得分:4)
然后你正在寻找viewflippers。
这些可以帮助您入门,
http://saigeethamn.blogspot.com/2010/05/image-switcher-view-android-developer.html
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));