개발 노트 : Android - Kakao Map

Developing with Kakao Map

Posted by Park Ji Hoon on August 16, 2019

git private repo
https://github.com/ggoowlgns/android_kakao_map_example
소스를 원하시는 분은 댓글 달아주세요!

Fragment 생성시 자동 생성되는 onCreateView에서 view통해서 참조해서 findViewById 를 한다.

1
2
3
4
5
6
7
8
9
10
-- 전략 --
private BottomSheetCoordinatorLayout bscl;
private View view;
-- 중략 --
@Override
    public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {
        view =  inflater.inflate(R.layout.fragment_franchisee_map, container, false);
        bscl =  (BottomSheetCoordinatorLayout)view.findViewById(R.id.bscl);
    }
-- 후략 --

View

실행 화면

version 1.0

$End $ $of $ $Posting $

Reference