Page 600 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 600
정보통신기기 프로젝트
DataBase log;
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
requestWindowFeature(Window.FEATURE_NO_TITLE);
//타이틀 바
setRequestedOrientation(ActivityInfo.SCREEN_ORIENTATION_LANDSCAPE);
//스크린 가로 고정
setContentView(R.layout.order);
//주문 페이지
getWindow().addFlags(WindowManager.LayoutParams.FLAG_KEEP_SCREEN_ON);
//화면 켜짐 유지.
back = (ImageButton) findViewById(R.id.backBtn);
light = (ImageButton) findViewById(R.id.lightBtn);
check = (ImageButton) findViewById(R.id.checkBtn);
types = (RadioGroup) findViewById(R.id.types);
amounts = (RadioGroup) findViewById(R.id.amounts);
waters = (RadioGroup) findViewById(R.id.waters);
//변수 선언
back.setOnClickListener(this);
light.setOnClickListener(this);
check.setOnClickListener(this);
//변수 사용 선언
getPreferences();
//ip값 함수 선언
typeStr = "";
amountStr = "";
waterStr = "";
log = new DataBase(getApplicationContext(), "log.db", null, 1);
//데이터베이스에 값
th = new MyThread(ips,9999);
- 593 - 정보통신기기과