Disable scrollbars altogether on the three main tabs

This commit is contained in:
Daniel Martí 2013-07-11 13:03:22 +02:00
parent a46b8e8663
commit c78ff5df30

@ -49,7 +49,7 @@ abstract class AppListFragment extends Fragment implements AdapterView.OnItemCli
protected ListView createAppListView() {
ListView list = new ListView(getActivity());
list.setFastScrollEnabled(true);
list.setVerticalScrollBarEnabled(false);
list.setOnItemClickListener(this);
list.setAdapter(getAppListAdapter());
return list;