한 걸음 두 걸음
android 프래그먼트 화면에서 다른 activity로 연결하는 intent 사용하기 본문
반응형
다음 코드가 있는 클래스는 Fragment를 상속받았습니다.
원래대로라면 getApplicationContext()를 해서 intent를 실행시키는데,
프래그먼트상에서는 context가 존재하지않기 때문에 getActivity()를 통해 실행시킵니다.
mPlusButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Intent intent = new Intent(getActivity(),NoticeEnrollActivity.class);
startActivity(intent);
}
});
반응형
'FrontEnd > Android' 카테고리의 다른 글
android trend (0) | 2019.04.09 |
---|---|
매개변수 / argument / Bundle / Parcel / Parcelable / Handler / Serializable 조사예정 ~ (0) | 2019.04.09 |
android ActionBar에 Icon 붙이기 (0) | 2019.04.08 |
android webview 웹뷰 사용하기 google / local web / (0) | 2019.04.08 |
Android Timer Stopwatch 만들기~ 소스코드 예제 (1) | 2019.04.02 |