作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我遇到异常
android.content.ActivityNotFoundException: Unable to find explicit activity class {com.as.as/com.as.as.LoginActivity$myTask}; have you declared this activity in your AndroidManifest.xml?
不知道这里有什么问题
<application
android:name=".ObjectClass.AppController"
android:allowBackup="true"
android:icon="@drawable/app_logo"
android:label="@string/app_name"
android:supportsRtl="true"
android:theme="@style/AppTheme">
<activity
android:name=".LoginActivity"
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=".PersonalDetails"
android:label="@string/title_activity_personal_details"
android:theme="@style/AppTheme.NoActionBar" />
<activity android:name=".SignUpRegistration.SignUp" />
<activity
android:name="com.intsig.ccrengine.ISCardScanActivity"
android:label="@string/app_name" />
最佳答案
First try to clean and build project again and then try.
If it's not working then append a full path to your LoginActivity.
例如您的包名称是 com.exmaple 然后您在 list 中写入 com.example.LoginActivity 而不仅仅是 .LoginActivity。
关于android - 无法找到作为异步任务的显式 Activity 类,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43542659/
我是一名优秀的程序员,十分优秀!