-
Book Overview & Buying
-
Table Of Contents
-
Feedback & Rating

Android UI Development with Jetpack Compose
By :

The aim of this book is to show you how to develop beautiful, fast, and maintainable Jetpack Compose apps. The previous chapters helped you get familiar with the core techniques and principles, as well as important interfaces, classes, packages, and—of course—composable functions. The remaining chapters cover topics beyond a successful adoption of Android’s new declarative user interface toolkit.
In this chapter, we are going to look at AndroidView()
, AndroidViewBinding()
, and ComposeView
as the interoperability application programming interfaces (APIs) of Jetpack Compose. The main sections we will cover are the following:
We start by looking at how to show a traditional View hierarchy in a Compose app. Imagine you have written a custom component (which, under the hood, consists of...