i´m making an app that shows random sentences when you press a botton, this process is pefect, part of my code is:
botonok.setOnClickListener(new OnClickListener()
{
public void onClick(View v)
{
Resources res = getResources();
myString = res.getStringArray(R.array.myArray);
String a = myString[rgenerator.nextInt(myString.length)];
TextView elemento1 = (TextView) findViewById(R.id.elemento1);
elemento1.setText(a);
...
the problem, i need these sentence appear gradually, for example, the 1st sentence "elemento1" should appears just when you click the botton, the 2nd sentence, half second later, the 3rd sentece, one second later.. i have 4 sentences, as you can see, they are from an array.
Thanks for helping