Android Articles
Android TextView Internals: Complex Text Layout Scenarios, Part 4
Part 4 of the Android TextView measurement and layout series covers RTL/BiDi text, emoji, rich text spans, performance, and debugging.
Read Post
Android TextView Internals: Text Measurement and Layout
A deep dive into how Android TextView measures and lays out text, from Layout selection and line breaking to font metrics, RTL text, emoji, spans, and performance.
Read Post
Android Internationalization: Configuration, Resources, and App Locale
A practical guide to Android internationalization, covering Configuration, ContextWrapper isolation, Android 13 per-app locales, and Crowdin translation pipelines.
Read Post
Android DEX Bytecode and MultiDex: The Full Loading Pipeline
A full walkthrough of Android DEX bytecode limits, the real source of the 65,536 method ceiling, MultiDex splitting, PathClassLoader loading, and production pitfalls.
Read Post
Android Network Stack Optimization: DNS, TLS 1.3, HTTP/3, and QUIC
A practical guide to Android network stack optimization, covering DNS resolution, DoH and HttpDNS, TLS 1.3 handshakes, HTTP/3, QUIC, and 0-RTT.
Read Post
Android Media3 Playback Architecture: From ExoPlayer to MediaSession
A deep dive into Android Media3 playback architecture, from the ExoPlayer core to the MediaSession control pipeline, buffering strategy, and migration practices.
Read Post
Understanding and Optimizing Autofill in Android WebView
Autofill is a browser or operating-system feature that fills form fields from stored user data such as addresses, passwords, and payment details, reducing repetitive input and improving interaction speed.
Read Post
Advanced Kotlin Coroutines and Flow: Applications and Internals
Async programming is unavoidable in Android development. This guide explains advanced Kotlin Coroutines and Flow usage, from structured concurrency to reactive streams.
Read Post
Jetpack Compose Advanced Applications and Internals
Jetpack Compose points to the future of Android UI development with a declarative programming model that differs sharply from the traditional imperative View system.
Read Post
Android Modular Scroll Containers: From ViewTypes to Section Engines
A section-based Android page container architecture using ConcatAdapter, lazy loading, and module-level paging to decouple complex ecommerce screens.
Read Post
Advanced Android Network Programming and Optimization (3): Advanced Retrofit Usage
Part 3 of Advanced Android Network Programming and Optimization: Retrofit extensions, gRPC, WebSocket, weak-network tuning, caching, retries, and monitoring.
Read Post
Advanced Android Network Programming and Optimization (1): Networking as the App's Lifeline
Part 1 of Advanced Android Network Programming and Optimization: protocol evolution from HTTP/1.1 to HTTP/2, QUIC, and HTTP/3.
Read Post
Advanced Android Network Programming and Optimization (2): OkHttp Internals
Part 2 of Advanced Android Network Programming and Optimization: OkHttpClient, Dispatcher, ConnectionPool, interceptors, EventListener, DNS, and TLS.
Read Post
Advanced Android Network Programming and Optimization
A deep dive into Android networking, covering HTTP/2, QUIC, OkHttp internals, Retrofit extensions, gRPC, WebSocket, weak-network tuning, and monitoring.
Read Post
Advanced Data Persistence and Caching Strategies
Data powers modern apps. This guide covers advanced Android persistence, SQLite and Room optimization, key-value storage, caching, offline-first design, large files, and synchronization.
Read Post
APK Decompilation and Recompilation: From Basics to Practical Workflows
A practical guide to Android APK decompilation, modification, recompilation, AAR dependency integration, and APK signing with apktool and related tools.
Read Post
Android Native Crash Handling and Firebase Capture Guide
How to trigger Android native crashes, why Firebase Crashlytics misses them by default, and how to configure NDK symbol uploads.
Read Post
Android App Security Hardening: Attack and Defense in Practice
A practical guide to Android app hardening, covering reverse engineering, code protection, RASP, network security, secure storage, and security coding practices.
Read Post
7 ADB Commands Every Android Developer Should Know
ADB is an essential Android debugging tool. These 7 practical commands make app installation, logging, screenshots, file transfer, and device control faster.
Read Post
Android Hidden APIs: From @hide to Greylist and Blacklist
Android exposes a rich public SDK, but many framework methods and fields are hidden with @hide. This article explains hidden API categories, runtime enforcement, greylists, blacklists, source generation, and safer compatibility strategies.
Read Post