마스터Q&A 안드로이드는 안드로이드 개발자들의 질문과 답변을 위한 지식 커뮤니티 사이트입니다. 안드로이드펍에서 운영하고 있습니다. [사용법, 운영진]

구글맵 마커 구현 및 텍스트뷰 변경

0 추천
    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="300dp"
        android:layout_weight="1"
        android:orientation="vertical">

        <TextView
            android:id="@+id/title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_gravity="center_horizontal"
            android:textColor="#ff000000"
            android:textSize="35dp"
            android:text="지급소 이름"
            android:textStyle="bold" />

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="horizontal">

            <TextView
                android:id="@+id/address"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center_horizontal"
                android:text="지급소 주소 내용"
                android:textSize="25dp"
                android:textColor="#ff000000"
                android:textStyle="bold" />
        </LinearLayout>

        <TextView
            android:id="@+id/rest"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="남은 재고량"
            android:textSize="25dp"
            android:textColor="#ff000000" />

    </LinearLayout>

 

    @Override
    public boolean onMarkerClick(Marker marker) {
        //Toast.makeText(this, marker.getTitle() + "\n" + marker.getPosition(), Toast.LENGTH_SHORT).show();
        return false;
    }

구글맵으로 위치정보를 표현해주는 어플을 만들고 있습니다.

지도에 표시된 마커를 클릭하면 액티비티에 있는 텍스트뷰의 내용을 변경하고 싶은데 어떻게 해야할까요?

텍스트뷰는 총 3개입니다.

참고할만한 사이트가 있으면 부탁드립니다.

kyu 님이 2019년 5월 30일 질문

1개의 답변

0 추천

https://developers.google.com/maps/documentation/android-sdk/map-with-marker?hl=ko

onMapReadyCallBack 사용하시면 되네요
저도 사용하고있구

아니면 여기 블로그같이 하셔도 될거에요

https://mailmail.tistory.com/19?category=719923

zkzkzhzj (1,670 포인트) 님이 2019년 5월 30일 답변
...