Fix contacts section not able to scroll

This commit is contained in:
Severiano Jaramillo 2018-07-09 10:51:32 -05:00
parent 84a6b331ad
commit d14f07f278

View file

@ -85,7 +85,7 @@ public class ContactListView extends RelativeLayout {
final LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this.getContext());
this.listView.setLayoutManager(linearLayoutManager);
//Prevents the list to start again when scrolling to the end
this.listView.setNestedScrollingEnabled(false);
//this.listView.setNestedScrollingEnabled(false);
}