Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    text
    copied!<p>Then you are looking for viewflippers. </p> <p>These can help you to get started,</p> <p><a href="http://saigeethamn.blogspot.com/2010/05/image-switcher-view-android-developer.html" rel="nofollow">http://saigeethamn.blogspot.com/2010/05/image-switcher-view-android-developer.html</a></p> <p><a href="http://www.warriorpoint.com/blog/2009/05/26/android-switching-screens-in-an-activity-with-animations-using-viewflipper/" rel="nofollow">http://www.warriorpoint.com/blog/2009/05/26/android-switching-screens-in-an-activity-with-animations-using-viewflipper/</a></p> <p><a href="http://www.androidguys.com/2008/08/14/flipping-your-views/" rel="nofollow">http://www.androidguys.com/2008/08/14/flipping-your-views/</a></p> <p><a href="http://www.codeshogun.com/blog/2009/04/16/how-to-implement-swipe-action-in-android/" rel="nofollow">http://www.codeshogun.com/blog/2009/04/16/how-to-implement-swipe-action-in-android/</a></p> <p>Sample. </p> <pre><code>&lt;Gallery android:id="@+id/Gallery01" android:layout_width="fill_parent" android:layout_height="wrap_content"&gt;&lt;/Gallery&gt; &lt;ImageSwitcher android:id="@+id/ImageSwitcher01" android:layout_width="fill_parent" android:layout_height="fill_parent"&gt; &lt;/ImageSwitcher&gt; 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)); </code></pre>
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload