카카오맵 API를 사용해보려고 하는 개린이 입니다.
가이드에 나와있는대로 lib / 예제 소스를 넣고 Build 시 map_view에서 아래 에러가 발생합니다.
MainActivity.kt: (19, 50): Unresolved reference: map_view
해당 에러를 잡으려면 어떻게 해야할까요?
- MainActivity.kt
package com.map.comkakaapi
import android.R
import android.annotation.SuppressLint
import android.os.Bundle
import android.view.ViewGroup
import androidx.appcompat.app.AppCompatActivity
import net.daum.mf.map.api.MapView
class MainActivity : AppCompatActivity() {
@SuppressLint("MissingSuperCall")
override fun onCreate(savedInstanceState: Bundle?) {
val mapView = MapView(this)
val mapViewContainer = findViewById(R.id.map_view) as ViewGroup // R.id.map_view에서 에러 발생
mapViewContainer.addView(mapView)
}
}
- activity_main.xml
android:id="@+id/map_view"
android:layout_width="match_parent"
android:layout_height=“match_parent” />