0

我正在开发的应用程序让我很困惑。我目前有三个活动(所有这些活动都在清单中定义),它们都过渡到彼此,即介绍-->活动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>

4

3 回答 3

1
case R.id.picturebutton: startActivity(new Intent(v.getContext(), Camera.class));

我认为在上面的代码中你想使用sl.reporter.Camera类,但错误地你最终使用了android.hardware.Camera.

于 2012-05-17T16:28:26.713 回答
0

您为声称的相机活动类使用了错误的导入:

  Unable to find explicit activity class {sl.reporter/android.hardware.Camera};
于 2012-05-17T16:25:05.767 回答
0

您可能引用的是 Android 内置的相机类而不是您自己的

确保在你的进口中你没有

import android.graphics.Camera;

或者

import android.hardware.Camera;

如果是这样,请删除它并确保在导入 Camera 类时它指向您自己的..

前任。

import sl.reporter.Camera;
于 2012-05-17T16:25:21.193 回答