google map 을 띄우는걸 하는데..
main.xml 파일을 보면

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    >
<TextView  
    android:layout_width="fill_parent" 
    android:layout_height="wrap_content" 
    android:text="@string/hello"
    />
<com.google.android.maps.mapview android:layout_height="wrap_content"
android:id="@+id/mapview" 
android:layout_width="fill_parent" 
android:apikey="my_api_key" 
android:focusable="true" 
android:clickable="true"
/>
</LinearLayout>

여기서 빨간색 표시 부분에 

ERROR No resource identifier found for attribute 'apikey' in package 'android'

이런 애러가 뜹니다.

왜일까요..