Guest User

Untitled

a guest
Dec 10th, 2018
95
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. val userIdLiveData:MutableLiveData = ...;
  2. val userLiveData:LiveData = Transformations.switchMap(userIdLiveData, id ->
  3. repository.getUserById(id)); // LiveData를 리턴합니다.
  4.  
  5. fun setUserId(userId:String) {
  6. this.userIdLiveData.setValue(userId);
  7. }
Add Comment
Please, Sign In to add comment