Results 3 issues of ukyo6

hi, can I use Glide to load multiple pictures with prority for example, I have three picutures in sd card: picture_a, picture_b, picture_c. if(picture_a.exists( )) { Glide.load(picture_a) }else if(picture_b.exists( ))...

如果数据源的LiveData不在ViewModel里, 那么configChange以后, Activity重建后, 也无法从ViewModel里获取到数据, 还要重新请求. 直接通过ViewModel来调用Repository通过LiveDataBus发送数据感觉和MVP的思想是一样的. ViewModel里并没有保存数据啊

I have a question. in browseSample we always `Transformations.switchMap()` to observe one input LiveData and set the value of `repoRepository.search(search)` to results. As below: ``` val results: LiveData = Transformations...