[Solved] Add buttons dynamically [closed]
On the Android platform, a Button is a specific widget that is intended to perform a specific action when clicked. You describe a need for a dynamic number of buttons in a list format, for this you should use a RecyclerView, which would allow you to bind data to the number of clickable items. If … Read more