Page 84 - 완) I MDP 프로젝트 작품 보고서(전체과 1학년)1.6
P. 84

txtName1.setSingleLine();
            //└정보를 표현할 때 한 줄로 표현하기 위해 설정
                    txtName2.setSingleLine();
            //└정보를 표현할 때 한 줄로 표현하기 위해 설정
                    txtName3.setSingleLine();
            //└정보를 표현할 때 한 줄로 표현하기 위해 설정


                    txtOTP1 = (TextView) findViewById(R.id.txtOTP1);
                    txtOTP2 = (TextView) findViewById(R.id.txtOTP2);
                    txtOTP3 = (TextView) findViewById(R.id.txtOTP3);


                    dataBase.update(4, 0);
            //└OTP카드 1번의 비밀번호를 0으로 설정함(OTP라는 글씨로 띄우기 위해서)
                    dataBase.update(5, 0);
            //└OTP카드 2번의 비밀번호를 0으로 설정함(OTP라는 글씨를 띄우기 위해서)
                    dataBase.update(6, 0);
            //└OTP카드 3번의 비밀번호를 0으로 설정함(OTP라는 글씨를 띄우기 위해서)


                    dataBase.update(4, false);
            //└OTP카드 1번의 상태를 나감으로 설정함(OUT)
                    dataBase.update(5, false);
            //└OTP카드 2번의 상태를 나감으로 설정함(OUT)
                    dataBase.update(6, false);
            //└OTP카드 3번의 상태를 나감으로 설정함(OUT)


                    dataBase.update(4, "Guest Card 1");
            //└OTP카드 1번의 이름을 Guest Card 1로 설정함
                    dataBase.update(5, "Guest Card 2");
            //└OTP카드 2번의 이름을 Guest Card 2로 설정함
                    dataBase.update(6, "Guest Card 3");
            //└OTP카드 3번의 이름을 Guest Card 3으로 설정함


                    txtIP = (TextView) findViewById(R.id.txtIP);


                    btnRefresh1 = (Button) findViewById(R.id.btnRefresh1);
                    btnRefresh2 = (Button) findViewById(R.id.btnRefresh2);
                    btnRefresh3 = (Button) findViewById(R.id.btnRefresh3);


                    btnConnect = (Button) findViewById(R.id.btnConnect);






                                                         -  77  -
   79   80   81   82   83   84   85   86   87   88   89