Recycler view in Android With Java
activity_main.xml MainActivity.Java CustomAdapter.Java rowlayout.xml
activity_main.xml MainActivity.Java CustomAdapter.Java rowlayout.xml
Wallpaper-based Dynamic Theming The ‘monet’ dynamic theming engine is one of the highlights of Android 12 and what makes Material You so special. The engine will pull the colors from…
Built-in screen recording Android 11 brings a feature some custom Android forks already have – built-in screen recording. This lets you use easily-accessible controls within the phone to create a…
A dark mode Dark mode can be activated by a quick setting or when you activate the battery saver option. Android 10 features, having been requested for a long time…
Gesture Navigation In Previous versions Android has used a standard three-button navigation bar at the bottom of the screen for ages. In Pie, you can drop the standard Back, Home, and Recent buttons in…
A content provider manages access to a central repository of data. A provider is part of an Android application, which often provides its own UI for working with the data.…
A Service is an app component that can handle long-running operations in the background, and it does not provide a user interface. Another application component can start a service, and…
Overview The Android system uses broadcasts messages (often are called Intents or Events) to transfer information to applications. The Broadcasts can be sent either by Android apps or, most commonly,…
Activity Life Cycle An activity is a single, focused thing that the user can do. Almost all activities interact with the user, so the Activity class takes care of creating…