問題是什么?
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
package="com.example.4" >
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<receiver android:name=".MainActivity"
tools:ignore="IntentFilterExportedReceiver">
<intent-filter>
<action android:name="android.intent.action.BOOT_COMPLETED">
</action>
</intent-filter>
</receiver>
</application>
uj5u.com熱心網友回復:
您需要在</manifest>下的結束標記</application>:
(...)
</application>
</manifest>
uj5u.com熱心網友回復:
在應用程式標記之后關閉清單標記。
</application></manifest>
android:icon="@drawable/ic_launcher" // check in drawable folder under res whether the default image ic_launcher is present or not. That is the default icon for your application.
轉載請註明出處,本文鏈接:https://www.uj5u.com/qiye/340664.html
