Banner轮播图

来源:互联网 发布:linux 远程唤醒 编辑:程序博客网 时间:2024/05/29 18:08

依赖:compile 'com.youth.banner:banner:+'compile 'com.github.bumptech.glide:glide:3.7.0'布局:<com.youth.banner.Banner    xmlns:app="http://schemas.android.com/apk/res-auto"    android:id="@+id/banner"    android:layout_width="match_parent"    android:layout_height="150dp" />List<String> mlist=new ArrayList<String>();for(int i=0; i<user.getData().getAdlist().size();i++){    String img = user.getData().getAdlist().get(i).getImg();    mlist.add(img);}//设置图片加载器banner.setImageLoader(new GlideImageLoader());banner.setImages(mlist);banner.start();public class GlideImageLoader extends ImageLoader {    @Override    public void displayImage(Context context, Object path, ImageView imageView) {        Glide.with(context).load(path).into(imageView);    }}


原创粉丝点击