1)在文本編輯器(如Notepad.exe的)從失敗的項目打開AndroidManifest.xml中。進口。
2)尋找android:名字 並改變它。
例如,我改變 機器人:名稱= 「com.example.android.location.MainActivity」 到 機器人:名稱= 「com.example.android.location.XMainActivity」
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="JDLocation Updates"
android:description="@string/app_description"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.android.location.XMainActivity"
android:label="JDLocation Updates">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<service
android:name="com.example.android.location.ReceiveUpdatesIntentService"
android:label="JDLocation Updates"
android:exported="false"></service>
</application>
它不會讓我編輯...我試過右鍵單擊並左鍵單擊並沒有什麼... – Noams98
@ user2569406 - 我添加了一張圖片。我可以直接點擊「MainActivity」,然後將文本更改爲我想要的任何內容。 –
謝謝!它的工作..並感謝所有試圖幫助的人!如果我只有足夠的聲望,我會投票支持你所有的答案...... – Noams98