From e74d983b0a25a3ac3218bb4138922d111497c541 Mon Sep 17 00:00:00 2001 From: GamefoldTV <92638771+GamefoldTV@users.noreply.github.com> Date: Tue, 6 Feb 2024 17:18:53 +0700 Subject: [PATCH] Create 06 --- 06_android/06 | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 06_android/06 diff --git a/06_android/06 b/06_android/06 new file mode 100644 index 0000000..87bdfb4 --- /dev/null +++ b/06_android/06 @@ -0,0 +1,14 @@ +1 + +import com.bumptech.glide.Glide + +Glide.with(this) + .load("http://server.com/avatars/${name}") + .into(imageView) + +2 + +Glide.with(this) + .load("http://server.com/avatars/${name}") + .circleCrop() + .into(imageView)