1

これは、Android コーディングの現場に長く携わっている人にとっては簡単な質問です。私はこの質問について調査、研究を行いました。試してみましたが、アプリケーションを実行すると常にエラーが発生しました。

質問は、ボタンを作成するにはどうすればよいですか、テキストビューに 1 から 100 までの乱数を表示しますか?

4

2 に答える 2

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));
    }    
});
于 2012-05-02T23:43:19.630 に答える
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));
            }
        });
    }
}
于 2012-05-03T00:08:33.440 に答える