0
I would like to create a list that would appear when the user clicks a button. The list would show the information contained in the database, and the user would select which one would give continuity to the game according to the selected option. Can anyone help me with that? You do not need to have any type of image, I would like to make a very simple list even if it only had 1 or 2 columns, being the first with the name "Id" and the second with the name "Theme", the user selects the desired row and I use the id corresponding to the selected theme. If possible, I wanted to do this in a kind of "pop-up" that after having the theme selected, would disappear, returning to appear again only if the button was clicked again.
Thanks for the answer! what I wanted, in fact, is a way to create a table that shows the elements contained in the database according to the user’s search, and when the user selects, the table "closes" and this continuity the application, with the element selected by the user.
– user127224
Then, you can use this technique and popular the table with the database items on
OpenMenu
. Create a Prefab of your item, and when you open the list you use theInstantiate
to create multiple items within theContent
ofScroll View
, changing the text to the values of the DB.– Aboud
All right, I’ll try to do it this way so, thanks!
– user127224
Hey, man, what’s up? I want to do another business in the project and I would like to use as a basis this solution you provided me, I know it’s asking too much, but how do you put the step by step how to do this process? I wanted to do it exactly the way you did it in the solution. I looked for some videos of how to use the Animator but most is teaching to move objects that are already apparent in the UI, I did not find any that when clicking a button, the scrollview appeared in front, like you did
– user127224