生成随机字符串-java和xml

时间:2013-12-08 01:02:44

标签: java android xml eclipse random

我正在尝试编写代码以从一组数组生成随机字符串。我需要帮助修复此代码,然后我在xml文件中包含哪些内容以确保java中的代码能够正常工作?请帮忙!谢谢!

以下是我的java代码:

package com.momsmealplanner;

import java.util.Random;

import android.app.Activity;
import android.content.res.Resources;
import android.os.Bundle;
import android.view.View;
import android.widget.TextView;


public class OutcomeActivity extends Activity 
{
    public String[] myString;

    Resources res = getResources();
    myString = res.getStringArray(R.array.restArray);

    Random random = new Random(System.currentTimeMillis());

    int[] textViews = 
    {
            //add textviews to this array
    };

    for (int v : textViews)
    {
        TextView tv = (TextView)findViewById(v);

        tv.setText(myString[random.nextInt(myString.length)]);
    }
}
}

我哪里错了?

0 个答案:

没有答案