* 실습노트 *
- TextView와 Button 추가
- Button클릭시 TextView에 난수 표시


1. textView 와 Button 추가.



2. onCreate() 편집
  
  protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        
        txtView =(TextView)findViewById(R.id.textView1);
        btn_start = (Button)findViewById(R.id.button1);
        rndNum = new Random();
         //난수 사용을 위한 객체 생성        
    }
3. onClick()함수 편집
 public void onClick(View view) {
    	int imsi = rndNum.nextInt(10) + 1;
        //범위 1부터 10까지의 난수 생성
    	
    	txtView.setText("random data: " + imsi);    	
    }


Posted by 감성소음