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

password.setText(Integer.toString(array.get(i).getPassword()));
            //└password를 보여줌


                        row.addView(no);
            //└TableRow형 row에 no을 추가시킴
                        row.addView(name);
            //└TableRow형 row에 name을 추가시킴
                        row.addView(status);
            //└TableRow형 row에 status을 추가시킴
                        row.addView(password);
            //└TableRow형 row에 password을 추가시킴
                        tb.addView(row);
            //└TableLayout형 tb에 row를 추가시킴
                    }
                }


                public boolean onOptionsItemSelected(MenuItem item) {
            //└Action Bar의 내용이 선택되었을 때 할 동작
                    int id = item.getItemId();
            //└클릭된 버튼의 ID를 id가 저장함
                    if (id == android.R.id.home)
            //└id값이 home 버튼이라면
                        onBackPressed();
            //└뒤로가기 동작을 함(이전 intent로 돌아감)
                    return super.onOptionsItemSelected(item);
            //└클릭된 ID에 대한 정보를 반환함
                }
            }






























                                                         -  109  -
   111   112   113   114   115   116   117   118   119   120   121