
Android 控件之ImageSwitcher图片切换器源码下载
具体下载目录在 /2012年资料/2月/2日/Android 控件之ImageSwitcher图片切换器/
一、重要方法
setImageURI(Uri uri):设置图片地址
setImageResource(int resid):设置图片资源库
setImageDrawable(Drawable drawable):绘制图片
二、实例
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_alignParentTop="true"
android:layout_alignParentLeft="true"
/>
android:background="#55000000"
android:layout_width="match_parent"
android:layout_height="60dp"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:gravity="center_vertical"
android:spacing="16dp"
/>
is = (ImageSwitcher) findViewById(R.id.switcher);
is.setFactory(this);
设置动画效果
is.setInAnimation(AnimationUtils.loadAnimation(this,
android.R.anim.fade_in));
is.setOutAnimation(AnimationUtils.loadAnimation(this,
android.R.anim.fade_out));
三、完整代码
1.布局文件
< xml version="1.0" encoding="utf-8" >
http://schemas.android.com/apk/res/android