码迷,mamicode.com
首页 > 移动开发 > 详细

Android ImageSwitcher

时间:2016-01-02 12:20:57      阅读:207      评论:0      收藏:0      [点我收藏+]

标签:

 

要想让ImageSwitcher显示图片,需要为ImageSwitcher提供一个View,使用ImageSwitcher对象的setFactory方法。

     switcher.setFactory(new ViewSwitcher.ViewFactory() {
            
            @Override
            public View makeView() {
                return new ImageView(AtyImageSwitcher.this);
            }
        });

 

可以为ImageSwitcher设置图片进入和退出的效果,使用setInAnimation和setOutAnimation

     switcher.setInAnimation(AnimationUtils.loadAnimation(AtyImageSwitcher.this, android.R.anim.slide_in_left));
        switcher.setOutAnimation(AnimationUtils.loadAnimation(AtyImageSwitcher.this, android.R.anim.fade_out));

 

Android ImageSwitcher

标签:

原文地址:http://www.cnblogs.com/huanyou/p/5094359.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!