我是Android开发的新手,我发现它有时会让人感到麻烦和困惑。我正在运行我的项目,之前工作正常,然后复制了一个活动,并更改了包名称,工作正常。我关闭了android工作室。现在,当我再次打开我的项目时,我开始收到错误“启动时出错:找不到默认活动”但我在AndroidManifest.xml中有它。然后我尝试了“编辑配置 - >常规 - >启动应用程序并将其设置为Splashscreen。现在我收到了这个新的错误,这个错误太顽固而无法消失!我已经尝试了一切,但没有真正对我有用。请帮助我我可能会错过一些愚蠢的东西。
$ adb shell am start -n"com.example.dell.optasiaapp/com.example.dell.optasiaapp.Splashscreen" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Error while executing: am start -n "com.example.dell.optasiaapp/com.example.dell.optasiaapp.Splashscreen" -a android.intent.action.MAIN -c android.intent.category.LAUNCHER
Starting: Intent { act=android.intent.action.MAIN cat= [android.intent.category.LAUNCHER] cmp=com.example.dell.optasiaapp/.Splashscreen }
Error type 3
Error: Activity class {com.example.dell.optasiaapp/com.example.dell.optasiaapp.Splashscreen} does not exist.
Error while Launching activity
我尝试过:
我的AndroidManifest代码是
<?xml version="1.0" encoding="utf-8"?>
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme"></application>
<activity android:name=".Splashscreen"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity android:name=".HomeScreen">
<intent-filter>
<action android:name="com.example.dell.optasiaapp.HomeScreen" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<meta-data
android:name="com.google.android.gms.version"
android:value="@integer/google_play_services_version" />
<activity android:name=".AboutUs">
<intent-filter>
<action android:name="com.example.dell.optasiaapp.AboutUs" />
<category android:name="android.intent.category.About" />
</intent-filter>
</activity>
<activity android:name=".Help" > </activity>
答案 0 :(得分:1)
这太愚蠢了。我在互联网上尝试了所有可用的东西,但对我没用所以我刚刚制作了一个新项目,并将每个代码粘贴到新的空活动中。现在运行正常。
答案 1 :(得分:0)
如果您手动更改包名称,请尝试以下操作: 在build.gradle中 apply plugin:'android-library' 至 apply plugin:'com.android.application'
答案 2 :(得分:0)
我在Android Studio中遇到的最糟糕的事情之一。
请按照以下步骤操作:
关闭Android Studio。
删除.idea / workspace.xml
启动Android Studio并启动您的应用程序。
答案 3 :(得分:-1)
我遇到了同样的问题,模拟了该应用程序并尝试在其他手机上运行完美,只是我的手机出现了故障。
对我有用的是删除所有其他用户配置文件,包括来宾用户。