안드로이드 다음 map api 지도 띄우기 질문입니다

하라는 대로 다 따라 했는데 지도가 뜨지 않습니다 지도는 안 뜨고 Hello World!라는 문장이 뜹니다

코드는 다음과 같습니다

activity_main.xml

<?xml version="1.0" encoding="utf-8"?>

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width=“match_parent"
android:layout_height=“match_parent"
tools:context=”.MainActivity”>

<RelativeLayout
    android:id="@+id/map_view"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

</android.support.constraint.ConstraintLayout>

}

}

MainActivity.java
package com.example.silver_map;

import android.content.Context;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import android.content.pm.Signature;
import android.support.v7.app.AppCompatActivity;
import android.os.Bundle;
import android.util.Base64;
import android.util.Log;
import android.widget.RelativeLayout;

import net.daum.mf.map.api.MapView;

import java.security.MessageDigest;
import java.security.NoSuchAlgorithmException;

public class MainActivity extends AppCompatActivity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    MapView mapView = new MapView(this);
    mapView.setDaumMapApiKey("네이티브 앱 키 입력");
    RelativeLayout container = (RelativeLayout) findViewById(R.id.map_view);
    container.addView(mapView);



}

}

AndroidManifest.xml

<?xml version="1.0" encoding="utf-8"?>



<application

    android:allowBackup="true"
    android:icon="@mipmap/ic_launcher"
    android:label="@string/app_name"
    android:roundIcon="@mipmap/ic_launcher_round"
    android:supportsRtl="true"
    android:theme="@style/AppTheme">
    <activity android:name=".MainActivity">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <meta-data
        android:name="com.kakao.sdk.AppKey"
        android:value="---값"/>
</application>

호출 기록이 보이지 않습니다.
실제 사용하신 앱키를 메시지로 알려주시고,
에러 메시지가 나온게 있으면 알려주세요.