Skip to content

Commit

Permalink
no message
Browse files Browse the repository at this point in the history
  • Loading branch information
youth5201314 committed Dec 7, 2016
1 parent 5477c91 commit cf3909a
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,25 @@ protected void onCreate(Bundle savedInstanceState) {
banner.setImages(images).setImageLoader(new GlideImageLoader()).start();
}
```

#### Step 6.(可选)增加体验
```java
//如果你需要考虑更好的体验,可以这么操作
@Override
protected void onStart() {
super.onStart();
//开始轮播
banner.startAutoPlay();
}

@Override
protected void onStop() {
super.onStop();
//结束轮播
banner.stopAutoPlay();
}
```

## 混淆代码
```java
# glide 的混淆代码
Expand Down

0 comments on commit cf3909a

Please sign in to comment.