我想使用<intent>标签从默认的preferences.xml启动一个Activity。活动已经过良好的测试,问题不在于此。(我在我的应用程序中扩展了PreferenceActivity,因此preferences.xml随之“出现”了)请看一下代码,这是怎么回事?
preferences.xml:
....
<PreferenceCategory
android:title="@string/titleEtcSetup">
<PreferenceScreen
android:key="renameCourses"
android:title="@string/titleRenameCourses"
android:summary="@string/textRenameDisplayedCoursesNames">
<intent
android:action="android.intent.action.VIEW"
android:targetPackage="my.notifier.ui"
android:targetClass="my.notifier.ui.EditCoursesNamesActivity" />
</PreferenceScreen>
.....
</PreferenceCategory>
.....
manifest.xml:
....
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="my.notifier.ui"....
....
<activity android:name=".EditCoursesNamesActivity" android:label="@string/titleRenameCourses">
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
.....
当我按下“ renameCourses项”时,活动没有调用,什么也没发生。LogCat是“清除”的,没有错误或警告。我搜索了很多东西,但没有找到解决方案,也许我只是错过了一些东西……请帮助!