Tag: LayoutInflater

Tag: LayoutInflater

How to work with LayoutInflater in Kotlin
Image December 19, 2018 Development Pushpendra Kumar

Typically, you don’t ever need to directly use a LayoutInflater. Android does most of the layout inflation for you when you call setContentView() in the onCreate() method of your activity. So you, as the programmer, are responsible for making sure the views are inflated. Now you want to inflate views in the context of a

Details