top of page
Search

My Android Application

Writer: Keshav BatraKeshav Batra

So I've now finished my android app and I just need to present it to that potential connection to finding a job. I also need to make the format into an application for android. Below is a photo of what my title screen is like.



Below is the code used for the splash screen effect fading in and out

Below is an example of code that shows how some of the answers display

This here is the code that displays the questions

void Update()
    {
        if(pleaseUpdate == false)
        {
            pleaseUpdate = true;
            StartCoroutine(PushTextOnScreen());
        }
    }

    IEnumerator PushTextOnScreen()
    {
        yield return new WaitForSeconds(0.25f);
        screenQuestion.GetComponent<Text>().text = newQuestion;
        answer1.GetComponent<TextMeshProUGUI>().text = new1;
        answer2.GetComponent<TextMeshProUGUI>().text = new2;
        answer3.GetComponent<TextMeshProUGUI>().text = new3;
        answer4.GetComponent<TextMeshProUGUI>().text = new4;
    }

 
 
 

Comments


bottom of page