我正在尝试创建一个非常简单的自定义意图示例。我搜索过这个错误,没有一个论坛有适合我的答案。这是我的文件:
public class DemoImplicit extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
}
public void whenButtonIsClicked(View view) {
Intent intent = new Intent("com.example.action.NEW_ACTION"); //<<<<<<<
intent.addCategory("android.intent.category.DEFAULT"); //<<<<<<<
// Intent intent = new Intent("android.intent.action.VIEW");
// intent.addCategory("com.example.MY_CATEGORY");
startActivity(intent); //<<<<<<<
}
}
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.demos" android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".SatisfyIntent" android:label="@string/app_name">
<intent-filter>
<!-- action android:name="android.intent.action.VIEW" / -->
<!-- category android:name="com.example.MY_CATEGORY" / -->
<action android:name="com.example.action.NEW_ACTION" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="9" />
</manifest>
这两个单独的文件位于两个不同的Eclipse项目中,但我确保在将包含startActivity调用的文件加载到模拟器之前,将包含intent-filter的项目加载到模拟器上。无论如何,我总是得到一个ActivityNotFoundException。 我做错了什么?
P.S。这是包含DemoImplicit.java的项目的AndroidManifest.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.demos"
android:versionCode="1"
android:versionName="1.0">
<application android:icon="@drawable/icon" android:label="@string/app_name">
<activity android:name=".DemoImplicit"
android:label="@string/app_name">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
<uses-sdk android:minSdkVersion="9" />
</manifest>
答案 0 :(得分:4)
请尽快确保您的AndroidManifest.xml
文件必须在此定义DemoImplicit
活动。
像这样:<activity android:name=".DemoImplicit"/>
同样在您的代码中,您已将SatisfyIntent
指定为启动器活动
<activity android:name=".SatisfyIntent" android:label="@string/app_name">
但是在你的Java代码中似乎没有这样的东西。
因此,底线是:您要运行的Activity
必须已在AndroidManifest.xml
文件中定义。