Android Architecture Components: Exploring

At Google I/O 2017, Google introduced new architecture components for Android. It is a new library which will help developers to maintain their activities or fragments lifecycle very easily.

This new library by Google provides some relief to the Android Developers by providing a complete solution to problems like memory leaks, data persistence during configuration changes and also helps in reducing some boilerplate code.

Exploring the new Android Architecture Components (Part 1) | Humble Bits

There are 4 Android Architecture Components :

  1. Lifecycle
  2. LiveData
  3. ViewModel
  4. Room

LiveData Clean Code using MVVM and Android Architecture Components | by Rohit Singh | AndroidPub | Medium

Lifecycle

Lifecycle class helps us in building lifecycle aware components. It is a class which holds all the information about the states of an activity or a fragment. It allows other objects to observe lifecycle states like a resume, pause etc.

There are 2 main methods in the Lifecycle class:

  1. addObserver() – Using this method, we can add a new instance of a “LifecyleObserver” class which will be notified whenever our “LifecycleOwner” changes state. For example: if an activity or a fragment is in RESUMED state then our “LifecycleObserver” will receive the ON_RESUME event.
  2. removeObserver() – This method is used for removing active “LifecycleObserver” from the observer’s list.

LifecycleObserver

With the help of this interface, we can create our Observer class which will observe the states of an activity or a fragment. We need to simply implement this “LifecycleObserver” interface.

LifecycleOwner

It is an interface with a single method called “getLifecycle()”. This method must be implemented by all the classes which are implementing this interface. This interface denotes that this component (an activity or a fragment) has a lifecycle.

Any class whose states we want to listen must implement the “LifecycleRegistryOwner” interface. And any class who wants to listen must implement the “LifecycleObserver” interface.

There are several events which we can listen with the help of the “LifecycleObserver” interface:

  • ON_CREATE – Will be called after onCreate() method of the “LifecycleOwner”.
  • ON_START – Will be called after onStart() method of the “LifecycleOwner”.
  • ON_RESUME -Will be called after onResume() method of the “LifecycleOwner”.
  • ON_PAUSE – Will be triggered upon the “LifecycleOwner” being paused (before onPause() method).
  • ON_STOP – Will be triggered upon the “LifecycleOwner” being stopped (before onStop() method).
  • ON_DESTROY – Will be triggered by the “LifecycleOwner” being destroyed (before onDestroy() method).

All these events are enough for managing the lifecycle of our views. With the help of these  “LifecycleObserver” and “LifecycleOwner” classes, there is no need to write methods like onResume(), onPause() etc in our activities or fragments. We can handle these methods in our observer class.

We can also get the current state of the “Lifecycle Owner” with the help of getCurrentState() method.

LiveData

LiveData is a data holder class. It provides us the ability to hold a value and we can observe this value across lifecycle changes.

Yeah, you heard that right!

LiveData handles the lifecycle of app components automatically. We only need to observe this LiveData class in our components. That’s it and we are done.

There are some important methods of LiveData:-

  • onActive() – Called when there is an active observer. An observer is called active observer when its lifecycle state is either STARTED or RESUMED and the number of active observers changes from 0 to 1.
  • onInactive() – Called when there are no active observers. An observer is called inactive observer when its lifecycle state is neither STARTED nor RESUMED (like an activity in the back stack) and the number of active observers changes from 1 to 0.
  • setValue() – Used to dispatch the results to the active observers. This method must be called from the main thread.

In above method observe() we pass the Lifecycle Owner as an argument, this argument denotes that LocationHelperLiveData class should be bound to the Lifecycle of the MyActivity class. This bounding relationship of helper class with our Activity denotes that:-

  • Even if the value changes, the observer will not be called if the Lifecycle is not in an active state (STARTED or RESUMED).
  • The observer will be removed automatically if the Lifecycle is destroyed.

Whenever MyActivity is in either PAUSE or STOP state it will not receive location data. It will start receiving Location Data again once MyActivity is in either RESUME or START state.

There can be multiple Activities or Fragments which can observe LocationHelperLiveData instance and our LiveData class will manage their Lifecycle automatically.

There is no need to remove observer in onDestroy() method, it will be removed automatically once LifecycleOwner is destroyed.

Share:

Share on facebook
Facebook
Share on twitter
Twitter
Share on pinterest
Pinterest
Share on linkedin
LinkedIn
<b><strong>Karan Makan</strong></b>

Karan Makan

Technology Engineer and Entrepreneur. Currently working with International Clients and helping them scale their products through different ventures. With over 8 years of experience and strong background in Internet Product Management, Growth & Business Strategy.

On Key

Related Posts

Hook Up on Tinder

Since dating can be stressful, there is the possibility of humor to try to reduce tensions. In a new study published in the Proceedings of

error: Content is protected !!