问题描述
我想创建滑动图像的ImageView的机器人。在那个时候我 将手指放在右侧比右侧当前图像移动和 接下来的图像显示。当我移动手指同样的事情做 上,下,左。我有一个图像阵列。在许多形象都没有... 一个接一个,我想,在幻灯片的所有图像。我尝试了很多code,但不 得到正确的输出... 在我的code只有1 ImageView的 任何一个可以帮助我..... 我试试这个链接也只是可能没有得到适当的帮助。
i want to create Sliding Image ImageView in android. In that when i move finger on Right side than current image move on Right side and Next image display. Same thing is done when i move finger up,down,Left. I have One Image Array. In that many image are there... One By One i want that all image in Slide... I Try many code But Not get Proper output... In my Code there are only 1 ImageView Can any one Help me..... I try this Link also but not got proper help
在此先感谢
推荐答案
然后你正在寻找viewflippers。
Then you are looking for viewflippers.
这些可以帮助你上手,
的
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 /翻转,您-意见/
的
样品。
<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));
这篇关于滑动图片在ImageView的机器人的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!