Я пытаюсь создать приложение для карт Android.Поскольку я новичок во всем этом, я возился с основами, поэтому я решил создать карту, показать кнопку и цифровые часы.
Когда я запускаю проект, эмулятор загружается, однако при попытке загрузить приложение принудительно закрывается.
My 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">
<DigitalClock android:text="@+id/DigitalClock01"
android:id="@+id/DigitalClock01"
android:layout_width="wrap_content"
android:layout_height="wrap_content"></DigitalClock>
<Button android:text="@+id/Button01"
android:layout_width="wrap_content"
android:id="@+id/Button01"
android:layout_height="wrap_content"></Button>
<com.google.android.maps.MapView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:apiKey="xyz_my_key" />
</LinearLayout>
В моем манифесте Iя добавил uses-library
определение
<uses-library android:name="com.google.android.maps"/>
и я также добавил разрешение на использование Интернета
<uses-permission android:name="android.permission.INTERNET"></uses-permission>
Почему происходит сбой?
последняя запись в журнале ошибок:
При выполнении команды не выводится: 'am start -n com.example.android.google.apis / com.example.android.google.apis.com.example.android.apis.MapsDemo-a android.intent.action.MAIN -c android.intent.category.LAUNCHER 'на эмуляторе устройства-5554