我有这个代码
@EActivity(R.layout.activity_app_List)public class MainListVIEw extends SherlockFragmentActivity{}
这是例外
androID.content.ActivityNotFoundException: Unable to find explicit activity class {com.imona.androID/com.imona.androID.MainListVIEw}; have you declared this activity in your AndroIDManifest.xml?
表现
<activity androID:name="com.imona.androID.MainListVIEw_" androID:label="@string/List_navigation" androID:theme="@style/theme.VPI" > <intent-filter> <category androID:name="androID.intent.category.LAUNCHER" /> </intent-filter> </activity>
将AndroID批注与SherlockFragmentActivity一起使用可以吗?
解决方法:
使用AndroIDAnnotation,您必须在AndroIDManifest文件中声明生成的类(即,带有_后缀).
在这里,似乎您正在尝试启动原始类,而不是生成的类.您应该使用构建器来开始您的活动.有关更多信息,请查看the wiki.
总结以上是内存溢出为你收集整理的带有Android注释的类未找到异常全部内容,希望文章能够帮你解决带有Android注释的类未找到异常所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)