Use View Binding instead legacy view scans
Component whose code/documentation can be Enhanced
Proposed Enhancements
Using ViewBinding instead of normal view scanning. Because each time we scan a view, it takes time and increases load on the system, thereby decreasing the app-performance, with ViewBinding we can directly access those view without scanning the entire view, as ViewBinding generates binding
classes that hold references to the corresponding layout files of views.