ClassNotFoundException&应用程序崩溃

时间:2017-03-29 20:47:17

标签: java android android-studio debugging crash

我在学习应用上使用Android Studio,但是当我运行它时,它会崩溃并给我这个错误代码:

<application
>     android:allowBackup="true"
>     android:icon="@mipmap/ic_launcher"
>     android:label="@string/app_name"
>     android:supportsRtl="true"
>     android:theme="@style/AppTheme">
>     <activity android:name=".CrimeListActivity">
>         <intent-filter>
>             <action android:name="android.intent.action.MAIN" />
>             <category android:name="android.intent.category.LAUNCHER" />
>         </intent-filter>
>     </activity>
>     <activity android:name=".CrimePagerActivity">
>     </activity> </application>

我找了一个解决方案,但没有找到适合android studio的东西,但最重要的是我没有找到问题的根源,为什么android studio的行为就像那样。

编辑:活动存在于清单文件中:

  

{{1}}

在降级sdk中的tools文件夹(与其他软件的兼容性问题)之前,我还必须准确[我将文件夹命名为tools ==&gt; toolsXXXX并下载版本24.2并将tools文件夹放在sdk文件夹中],它正在工作..

2 个答案:

答案 0 :(得分:0)

尝试执行应用程序的卸载,执行干净的构建,重新同步,然后再次运行应用程序。

答案 1 :(得分:0)

确保com.training.criminalintent.CrimeListActivity中存在AndroidManifest.xml

<activity android:name="com.training.criminalintent.CrimeListActivity" />