Page 621 - 3-3
P. 621
intent.putExtra("IP",IP); // IP 주소를 Key 값 IP 로 전달
intent.putExtra("PORT",PORT); // PORT 주소를 Key 값 PORT 로 전달
startActivity(intent); // 화면전환
}
}
);
jiho.setOnClickListener( // 지호 버튼이 눌렸을경우
new Button.OnClickListener() {
public void onClick(View v) {
id = "3115"; // 변경할 학생의 학번값
Intent intent = new Intent(getApplicationContext(), PeriodActivity.class);
intent.putExtra("dates", dates); // 날짜값을 Key 값 dates 로 전달
intent.putExtra("id", id); // 학생정보를 Key 값 id 로 전달
intent.putExtra("IP",IP); // IP 주소를 Key 값 IP 로 전달
intent.putExtra("PORT",PORT); // PORT 주소를 Key 값 PORT 로 전달
startActivity(intent); // 화면전환
}
}
);
min.setOnClickListener( // 민성 버튼이 눌렸을경우
new Button.OnClickListener() {
public void onClick(View v) {
id = "3116"; // 변경할 학생의 학번값
Intent intent = new Intent(getApplicationContext(), PeriodActivity.class);
intent.putExtra("dates", dates); // 날짜값을 Key 값 dates 로 전달
intent.putExtra("id", id); // 학생정보를 Key 값 id 로 전달
intent.putExtra("IP",IP); // IP 주소를 Key 값 IP 로 전달
intent.putExtra("PORT",PORT); // PORT 주소를 Key 값 PORT 로 전달
startActivity(intent); // 화면전환
}
}
);
}
}
package com.helloworld.smartschool;
import android.content.Intent; // 액티비티 호출 클래스
import android.os.Bundle; // 문자열로 된 키와 여러 가지의 타입의 값을 저장하는 Map 클래스
- 621 -