TheLearningCurve / NutritionApiV3

0 stars 0 forks source link

Convert the custom list on the search feature using the JavaFX listView #6

Closed KyletheWolff closed 8 years ago

KyletheWolff commented 8 years ago

(Unfinished need a story for the custom cells to go with this)

Currently I built a custom listView to display the nutrition items. The issue is we are creating new objects every time. The correct way to handle a list is virtualization which basically means; the only objects that get created are the objects displaying on page. When the user scrolls the cell at the top will become the cell at the bottom this is called recycling. recycler

BrandonVanderMey commented 8 years ago

This is a great idea and I like it. Let's go forward with this enhancement!

KyletheWolff commented 8 years ago

Working on this at the moment. Hopefully will be done this weekend depending on home work

KyletheWolff commented 8 years ago

Closed