gabrielemariotti / cardslib

Android Library to build a UI Card
4.66k stars 1.19k forks source link

CardWithList show ProgressBar below List #531

Open geshner opened 8 years ago

geshner commented 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:

image 1

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:

image 2