You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public LiveData<List<Project>> getProjectList(String userId) {
final MutableLiveData<List<Project>> data = new MutableLiveData<>();
like this, if you use the method to refresh data, you can only get a new mutableLiveData which can't be observed the change ,you should put mutableLiveData out of the method.
//something...
return data;
}
The text was updated successfully, but these errors were encountered:
The text was updated successfully, but these errors were encountered: