我正在开发的应用程序让我很困惑。我目前有三个活动(所有这些活动都在清单中定义),它们都过渡到彼此,即介绍-->活动1-->活动2。从介绍到第一个活动的过渡使用以下方法可以正常工作:
public void GOTOGPS(View v)
{
switch (v.getId()){
case R.id.button1: startActivity(new Intent(v.getContext(), StreetLightOutageActivity.class));//Jump to StreetLightOutageActivity (main.xml)
default: break;
}//switch
}//GOTOGPS
但是,用于转到我的第三个活动的第二个活动“StreetLightOutageActivity”中的方法不起作用:
public void GOTOCAMERA1(View v)
{
switch (v.getId()){
case R.id.picturebutton: startActivity(new Intent(v.getContext(), Camera.class));
default: break;
}//switch
}//GOTOCAMERA1
LogCat 给了我一个 ActivityNotFoundException:
05-17 15:51:41.292: E/AndroidRuntime(534): Caused by: android.content.ActivityNotFoundException: Unable to find explicit activity class {sl.reporter/android.hardware.Camera}; have you declared this activity in your AndroidManifest.xml?
然后是一个 InvocationTargetException,我认为它源于上一个异常:
05-17 15:51:41.292: E/AndroidRuntime(534): Caused by: java.lang.reflect.InvocationTargetException
现在真正让我感动的是,如果我修改方法以从我的介绍屏幕转换到我的第二个活动以转到“Camera.class”而不是 StreetLightOutageActivity.class,它可以工作。
最后,这是我的清单,以防万一,
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="sl.reporter"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="15" />
<uses-permission android:name="android.permission.ACCESS_FINE_LOCATION" />
<uses-permission android:name="android.permission.CAMERA" />
<uses-feature android:name="android.hardware.camera" />
<uses-feature android:name="android.hardware.camera.autofocus" />
<application
android:icon="@drawable/ic_launcher">
<activity
android:name=".StreetLightOutageActivity">
</activity>
<activity
android:name=".Camera">
</activity>
<activity
android:name=".Introscreen">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>