Tag

Picasso

0 views collected around this technical thread.

vivo Internet Technology
vivo Internet Technology
Jun 30, 2021 · Mobile Development

Analyzing Android Bitmap Memory Usage and Optimization Strategies

The article explains that Android OOM crashes often stem from oversized bitmaps, showing how a 36 KB image can consume 2.4 MB RAM, compares Glide and Picasso scaling, recommends using appropriate bitmap configs (ARGB_8888 vs RGB_565), matching image dimensions to view size, and provides Kotlin Glide module code for dynamic format selection to optimize memory usage.

AndroidBitmapGlide
0 likes · 12 min read
Analyzing Android Bitmap Memory Usage and Optimization Strategies
58 Tech
58 Tech
Sep 9, 2020 · Frontend Development

Picasso: An Open-Source Sketch Design to Front-End Code Automation Tool

Picasso, an open‑source tool released by 58.com, automatically parses Sketch design files into high‑fidelity, maintainable front‑end code through a multi‑stage process that includes Symbol integration, layer reconstruction, attribute extraction, and layout generation, significantly boosting UI development efficiency.

PicassoSketch parsingUI automation
0 likes · 6 min read
Picasso: An Open-Source Sketch Design to Front-End Code Automation Tool
Beike Product & Technology
Beike Product & Technology
Sep 21, 2018 · Mobile Development

Optimizing Image Loading in the Beike Android App: Replacing Picasso with Glide to Prevent OOM

The article analyzes an OOM issue in the Beike Android app caused by large image memory usage, compares Picasso and Glide memory footprints, describes the refactoring effort required to switch libraries, explains Glide's two‑level caching mechanism, and highlights the performance and stability benefits for pre‑Android 8.0 devices.

AndroidGlideImage Loading
0 likes · 4 min read
Optimizing Image Loading in the Beike Android App: Replacing Picasso with Glide to Prevent OOM
Qunar Tech Salon
Qunar Tech Salon
Mar 22, 2017 · Mobile Development

Analyzing the Source Code of the Picasso Image Loading Library in Android

This article examines the internal implementation of the Android Picasso image‑loading library, detailing its singleton initialization, request creation, builder pattern usage, caching mechanisms, delayed loading, and the workflow of actions, handlers, and thread execution to illustrate how images are fetched and displayed.

AndroidBuilder PatternCaching
0 likes · 8 min read
Analyzing the Source Code of the Picasso Image Loading Library in Android