Hide progress bar on startup

pull/77/merge
Alinson S. Xavier 10 years ago
parent 9891139b5a
commit 83db9fe2f2

@ -106,7 +106,9 @@ public class ListHabitsFragment extends Fragment
listView = (DragSortListView) view.findViewById(R.id.listView); listView = (DragSortListView) view.findViewById(R.id.listView);
llButtonsHeader = (LinearLayout) view.findViewById(R.id.llButtonsHeader); llButtonsHeader = (LinearLayout) view.findViewById(R.id.llButtonsHeader);
llEmpty = view.findViewById(R.id.llEmpty); llEmpty = view.findViewById(R.id.llEmpty);
progressBar = (ProgressBar) view.findViewById(R.id.progressBar); progressBar = (ProgressBar) view.findViewById(R.id.progressBar);
progressBar.setVisibility(View.GONE);
selectedPositions = new LinkedList<>(); selectedPositions = new LinkedList<>();
loader = new HabitListLoader(); loader = new HabitListLoader();

Loading…
Cancel
Save