Snackbar Android is introduced in Android material design. Its work same as Toast widget to show short time Message or Feedback. But Snackbar also provides control on some action (Like Undo, Retry, Cancel etc). You can also change the color of Snackbar and text. This message show in bottom of your app like below image. In this Read More…
Month: September 2016
Creating and Using Android Fragments dynamically
Android fragments are the main component in android development, it’s added fragment component in Android 3.0 (API level 11), primarily to support more dynamic and flexible. Fragments are a usable portion of user interface in activity. In Activity, we can use multiple fragments. Fragments have its own life cycle, but its directly affected by the Read More…
How to Manage Android Application Life Cycle
Android application life cycle does not completely control its application lifecycle, Its have own Linux process. Android device has limited memory so this process is created for the application when a code is needed. Another component (Activity, Services, and BroadCastReceiver) in application run and kill as per needed for the application. That’s how Android system Read More…