Added loading placeholders to artists page

This commit is contained in:
antonio
2023-03-14 11:09:09 +01:00
parent 40cfbef4d7
commit 47be372399
5 changed files with 233 additions and 26 deletions

View File

@@ -137,7 +137,7 @@ public class ArtistRepository {
* Metodo che mi restituisce le informazioni complete dell'artista (bio, immagini prese da last.fm, artisti simili...)
*/
public MutableLiveData<ArtistInfo2> getArtistFullInfo(String id) {
MutableLiveData<ArtistInfo2> artistFullInfo = new MutableLiveData<>();
MutableLiveData<ArtistInfo2> artistFullInfo = new MutableLiveData<>(null);
App.getSubsonicClientInstance(false)
.getBrowsingClient()