1
In Android Studio, I use a class called RecyclerView
, that repeats a layout while there is data for it, as if it were a list. There is an alternative to this in Java using Swing?
1
In Android Studio, I use a class called RecyclerView
, that repeats a layout while there is data for it, as if it were a list. There is an alternative to this in Java using Swing?
Browser other questions tagged java swing
You are not signed in. Login or sign up in order to post.
Probably not, given that this component is relatively new in android, and the swing is already "in the last", almost being depreciated in java.
– user28595
The closest I remember now with this component is Jlist and Jtable, with their proper abstractmodels.
– user28595