Reusing same ImageView multiple times in the same scene on JavaFX

后端 未结 3 816
栀梦
栀梦 2021-01-20 19:28

I\'m trying to build a Twitter-style ListView, and I couldn\'t reuse the same ImageView multiple times in the same list. Loading multiple copies seem to be wasteful and caus

3条回答
  •  悲&欢浪女
    2021-01-20 20:10

    Do something like this:

    ImageView image = ...
    ImageView src   = ...
    image.setImage(src.getImage());
    

提交回复
热议问题