在textview上生成1到100之间随机数的按钮

时间:2012-05-02 23:39:58

标签: android

这对那些长期参与Android编码场景的人来说是一个简单的问题!我做过研究,研究这个问题。尝试过,但是当Ran应用程序时总是出错。

问题是,我如何制作一个按钮,在文本视图中显示1到100之间的随机数?

2 个答案:

答案 0 :(得分:8)

final Random r = new Random();
Button b = (Button) findViewById(R.id.button1);
b.setOnClickListener(new View.onClickListener(){
    public void onClick(...){
        textView.setText(Integer.toString(r.nextInt(100)+1));
    }    
});

答案 1 :(得分:2)

以下是一些可能有用的示例代码。

public class SampleActivity extends Activity {

    private TextView displayRandInt;
    private Button updateRandInt;

    private static final Random rand = new Random();

    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(/* Your Activity's XML layout id */);

        /* Setup your Activity */

        // Find the views (their ids should be specified in the XML layout file)
        displayRandInt = (TextView) findViewById(R.id.displayRandInt);
        updateRandInt = (Button) findViewById(R.id.updateRandInt);

        // Give the Button an onClickListener
        updateRandInt.setOnClickListener(new View.onClickListener() {
            public void onClick(View v) {
                int randInt = rand.nextInt(100)+1;
                displayRandInt.setText(String.valueOf(randInt));
            }
        });
    }
}