use of be.brunoparmentier.openbikesharing.app.adapters.StationsListAdapter in project OpenBikeSharing by bparmentier.
the class StationsListFragment method onCreate.
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
stations = (ArrayList<Station>) getArguments().getSerializable(KEY_STATIONS);
emptyListResourceId = getArguments().getInt(KEY_EMPTY_LIST_RESOURCE_ID);
stationsListAdapter = new StationsListAdapter(getActivity(), R.layout.station_list_item, stations);
}
Aggregations