gabrielemariotti / cardslib

Android Library to build a UI Card

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

CardWithList show ProgressBar below List

geshner opened this issue · comments

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