ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Follow publication

Clean, Easy & New- How To Architect Your App: Part 4 — LiveData Transformations

Britt Barak
ProAndroidDev
Published in
5 min readJan 16, 2018

Transformations.map()

It observes the LiveData. Whenever a new value is available:

it takes the value, applies the Function on in, and sets the Function’s output as a value on the LiveData it returns.

LiveData<List<VenueViewModel>> getVenues(String location) {

LiveData<List<VenueData>> dataModelsLiveD =
repository.getVenues(location);
viewModelsLiveD =
Transformations.map(dataModelsLiveD,
newData -> createVenuesViewModel(newData));
return venuesViewModel;
}
List<VenueViewModel> createVenuesViewModel(List<VenueData> list) {
List<VenueViewModel> venuesVM = new ArrayList<>();
VenueViewModel venueViewModel;
for (VenueData item : list) {
venueViewModel = createViewModel(item);
venuesVM.add(venueViewModel);
}
return venuesVM;
}

Only if there’s an active observer attached to the trigger LiveData:

map() will be calculated, with the LifecycleOwner given on the trigger LiveData —

easier and safer for us!

What if I have an asynchronous action to perform?

Transformations.switchMap()

LiveData locationLiveD = ...;LiveData<List<VenueData>> dataModelsLiveD = 

Transformations.switchMap(locationLiveD,
newLocation -> repository.getVenues(newLocation));

Whenever a new value is set, the old value’s task won’t be calculated anymore.

Note that the Functions in both map() and switchMap() run on the Main Thread,

so no long running operations should be done there!

Chaining transformations

//Holds the location in a the form of [lat,lng], as is convenient for the UI:
LiveData<double[]> locationLiveD = ...;
// Creates a string format from the location, as Repository requires
LiveData<String> locationStrLiveD =
Transformations.map(locationLiveD, newLocation ->
String.format("%0s,%1s", newLocation[0], newLocation[1]));
//Gets the venue DataModels at the location from Repository
LiveData<List<VenueData>> dataModelsLiveD = Transformations.switchMap(locationStrLiveD,
newLocationStr -> repository.getVenues(newLocationStr));
//Transforms DataModels to ViewModels
LiveData<List<VenueViewModel>> viewModelsLiveD = Transformations.map(dataModelsLiveD, newData -> createVenuesViewModel(newData));

It is a powerful tool!

Next times

Free

Distraction-free reading. No ads.

Organize your knowledge with lists and highlights.

Tell your story. Find your audience.

Membership

Read member-only stories

Support writers you read most

Earn money for your writing

Listen to audio narrations

Read offline with the Medium app

Published in ProAndroidDev

The latest posts from Android Professionals and Google Developer Experts.

Written by Britt Barak

Product manager @ Facebook. Formerly: DevRel / DevX ; Google Developer Expert; Women Techmakers Israel community lead.

Responses (5)

Write a response