File tree Expand file tree Collapse file tree
app/src/main/java/com/runnect/runnect Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ class MyHistoryAdapter(
5050 RecyclerView .ViewHolder (binding.root) {
5151 fun onBind (data : HistoryInfoDTO ) {
5252 with (binding) {
53- Glide .with (itemView).load(data.img).thumbnail (0.3f )
53+ Glide .with (itemView).load(data.img).sizeMultiplier (0.3f )
5454 .format(DecodeFormat .PREFER_RGB_565 )
5555 .into(ivMyPageHistoryCourse)
5656
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ class MyRewardAdapter :
1717 with (binding) {
1818 Glide .with (itemView)
1919 .load(data.img)
20- .thumbnail (0.3f )
20+ .sizeMultiplier (0.3f )
2121 .into(ivItemMyPageRewardCircleFrame)
2222 tvItemMyPageRewardCondition.text = data.condition
2323 }
Original file line number Diff line number Diff line change @@ -66,7 +66,7 @@ class MyUploadAdapter(
6666
6767 Glide .with (itemView)
6868 .load(data.img)
69- .thumbnail (0.3f )
69+ .sizeMultiplier (0.3f )
7070 .format(DecodeFormat .PREFER_RGB_565 ).into(ivMyPageUploadCourse)
7171
7272 tvMyPageUploadCourseTitle.text = data.title
Original file line number Diff line number Diff line change @@ -46,7 +46,7 @@ fun AppCompatButton.updateEditFinishButtonBackground(
4646fun ImageView.setDiscoverItemImage (imageUrl : String? ) {
4747 Glide .with (context)
4848 .load(imageUrl)
49- .thumbnail (0.3f )
49+ .sizeMultiplier (0.3f )
5050 .format(DecodeFormat .PREFER_RGB_565 )
5151 .into(this )
5252}
Original file line number Diff line number Diff line change @@ -47,7 +47,7 @@ gson = "2.13.2"
4747coroutines = " 1.10.2"
4848
4949# Image
50- glide = " 4.16.0 "
50+ glide = " 5.0.5 "
5151coil = " 2.7.0"
5252
5353# Firebase
You can’t perform that action at this time.
0 commit comments