목록코딩/안드로이드 (2)
기록저장 블로그
우선 엑티비티 값 넘겨서 테스트 하기위해 2개의 엑티비티를 생성해준다. MainActivity.java ViewActivity.java 뷰 파일도 같이... activity_main.xml activity_view.xml (이렇게 엑티비티를 생성하면 쉽게 엑티비티 구성이 가능하다. (패키지 쪽은 엑티비티가 생성될 패키지 경로를 입력해주면된다.)) 생성이 되면 activity_view 에다가 인텐트에서 가져온 값을 출력하기 위한 텍스트뷰를 추가해준다. (텍스트뷰 아이디는 tx_view 으로 설정) 이제 다시 MainActivity.java 로 돌아와 코드작성 public class MainActivity extends AppCompatActivity { Intent intent; String msg = n..
Presenter MainPresenter.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 publicclassMainPresenter { //보여주는곳 publicinterfacview { voidButtonClick(); //버튼 클릭시 } //기능작동 interfacepresenter { StringshowMsg(); //토스트 메세지 보여주기 StringsetMsg(); //토스트 메세지 내용 설정 } } cs ButtonService.java 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 public class ButtonService implements MainPresenter.presenter { privateButtonC..