Open geshner opened 8 years ago
I was looking for the behavior of ProgressBar in CardWithList and I noticed that the ProgressBar is shown below the List, like this:
Because in the CardWithList class updateProgressBar method: mProgressView.setVisibility(View.VISIBLE); mListView.setVisibility(View.INVISIBLE);
mProgressView.setVisibility(View.VISIBLE);
mListView.setVisibility(View.INVISIBLE);
So my suggestion is to change the ListView visibility. mProgressView.setVisibility(View.VISIBLE); mListView.setVisibility(View.GONE);
mListView.setVisibility(View.GONE);
So it looks like this:
I was looking for the behavior of ProgressBar in CardWithList and I noticed that the ProgressBar is shown below the List, like this:
Because in the CardWithList class updateProgressBar method:
mProgressView.setVisibility(View.VISIBLE);
mListView.setVisibility(View.INVISIBLE);
So my suggestion is to change the ListView visibility.
mProgressView.setVisibility(View.VISIBLE);
mListView.setVisibility(View.GONE);
So it looks like this: