Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 13 Next capture
2021 2022 2023
1 capture
13 Jun 22 - 13 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by ergiomarxD · Oct 23, 2014 at 05:37 AM · buttonrandomarraylist

How could I show buttons if I am using array list?

I'm trying to make a quiz and I uses arraylist for random output of questions. I want to show buttons that will serve as the choices for my Questions how could I possibly do it? here is my code. Thank you!

void Start () { randomGen (); }

     void randomGen(){
                 ArrayList questionlist = new ArrayList ();
                 ArrayList choice1 = new ArrayList ();
                 ArrayList choice2 = new ArrayList ();
                 ArrayList calledCounters = new ArrayList ();
 
                 string[] questions = {"1","2","3","4","5","6","7","8","9","10"};
                 //string[] choice = {"A.Tinapa","B.Daing","C.Kangkong"};
                 //[] choices = {"A.kamote","B.kaldereta","C.suman"};    
 
 
 
         int counter = 0;
         do{
 
             int x= Random.Range(0,questions.Length-1);
 
 
             if(!isExisting(x,calledCounters)){
                 calledCounters.Add(x);
                 questionlist.Add(questions[x]);
                 //choice1.Add (choice[x]);
                 //choice2.Add(choices[x]);
 
                 Debug.Log (x);
                 Debug.Log(questionlist[counter]);
                 Debug.Log(choice1[counter]);
                 Debug.Log(choice2[counter]);
                 counter++;
             }
 
 
 
         }while(counter<=2);
 
     }
 
 
     bool isExisting(int y, ArrayList x){
                 bool status = false;
                 for (int g=0; g<x.Count; g++) {
                         if (x.Contains (y)) {
                                 status = true;
                                 break;
                         }
 
                 }
                 return status;
         }
 
 
 
 
     // Update is called once per frame
     void Update () {
 
     
     }
 
Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image Kiwasi · Oct 23, 2014 at 05:54 AM 1
Share

You don't. Array list is an old class that should not be used anymore. It's only in the language still for back comparability. Use a generic list ins$$anonymous$$d. It's faster, does not require casting, type safe and has more features then the array list.

0 Replies

· Add your reply
  • Sort: 

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

3 People are following this question.

avatar image avatar image avatar image

Related Questions

Three Random Objects From Array Without Repeat 1 Answer

How can I set active a random Ui object from a list on a button press then reset it after the button pressed? 1 Answer

button click event question 1 Answer

How to display data from array,arraylist while clicking the button? 1 Answer

My loop keeps producing the same wrong result :,,( 2 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges