Page 263 - 3-3
P. 263
// 화면 나가기
finish();
}
});
}
}
나) SelectDepartment.java
package com.helloworld.smartschool;
// 불러올 클래스들을 import 해준다
import android.content.Intent;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.view.View;
import android.widget.Button;
// 학과 선택 클래스
public class SelectDepartment extends AppCompatActivity {
//xml 의 버튼들을 선언
private Button btn_ts, btn_hr, btn_je;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_select_department);
// 이전 화면에서 넘긴 인텐트 받기
Intent receivedIntent = getIntent();
// WebIP 변수에 MooIn_Login.java 에서 "WebIP" 이름으로 Extra 정보를 받아옴
final String WebIP = receivedIntent.getStringExtra("WebIP");
//xml 의 View 를 java 코드에서 사용하기 위해 아이디를 이용해서 선언해준다.
btn_ts = (Button)findViewById(R.id.btn_ts);
btn_hr = (Button)findViewById(R.id.btn_hr);
btn_je = (Button)findViewById(R.id.btn_je);
// 통신과 버튼이 눌리는 이벤트가 발생하면
btn_ts.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
// 종목 선택1 클래스로 넘어가는 인텐트 생성
- 263 -