Skip to content

Commit

Permalink
修改GlideHelper load方法默认的点击退出为false
Browse files Browse the repository at this point in the history
  • Loading branch information
Beseting committed Oct 31, 2018
1 parent 53e55e3 commit 2c96220
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static void load(Context context, Object url, ImageView imageView){
.into(imageView);
}
public static void load(Activity activity,Object url,ImageView imageView){
load(activity,url,imageView,true);
load(activity,url,imageView,false);
}
public static void load(final Activity activity, Object url, ImageView imageView, boolean isClickFinish){
GlideApp.with(activity)
Expand Down

0 comments on commit 2c96220

Please sign in to comment.