0

这是logcat中的错误:

FATAL EXCEPTION: Thread-8
android.content.ActivityNotFoundException: No Activity found to handle Intent { act=com.slehmann.volumetimechanger.MAINACTIVITY }

这是我的清单:

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.slehmann.volumetimechanger"
    android:versionCode="1"
    android:versionName="1.0" >
    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:screenOrientation="portrait"
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="com.slehmann.volumetimechanger.APP" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>
        <receiver  android:process=":remote" android:name="AlarmReceiver"/>
          <activity
            android:screenOrientation="portrait"
            android:label="@string/app_name"
            android:name=".splash" > 
            <intent-filter >
                <action android:name="android.intent.action.MAIN" />
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>
</manifest>

这是我的意图:

} finally {
    Intent openMenus = new Intent("com.slehmann.volumetimechanger.MAINACTIVITY");
    startActivity(openMenus);
}
4

3 回答 3

2

你应该使用

} finally { Intent openMenus = new Intent("com.slehmann.volumetimechanger.APP"); startActivity(openMenus); }

或者

 } finally { Intent openMenus = new Intent(CLASSNAME.this, TARGETCLASSNAME.class); startActivity(openMenus); }

或更改manifest.xml

<uses-sdk
    android:minSdkVersion="8"
    android:targetSdkVersion="15" />

<application
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:screenOrientation="portrait"
        android:name=".MainActivity"
        android:label="@string/title_activity_main" >
        <intent-filter>
            <action android:name="com.slehmann.volumetimechanger.MAINACTIVITY" />

            <category android:name="android.intent.category.DEFAULT" />
        </intent-filter>
    </activity>
    <receiver  android:process=":remote" android:name="AlarmReceiver"></receiver>
      <activity
        android:screenOrientation="portrait"
        android:label="@string/app_name"
        android:name=".splash" > 
        <intent-filter >
            <action android:name="android.intent.action.MAIN" />

            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
</application>
于 2012-09-01T01:04:22.590 回答
0

您的活动名称已MainActivity进入manifest并且当调用意图时然后使用MAINACTIVITY发生的那个原因。记住uppercaseand lowercase

还有一件事:

只有一项活动应注册到 Launcher 类别。

<activity android:name=".FirstClassName"
      android:label="@string/app_name">
 <intent-filter>
    <action android:name="android.intent.action.MAIN" />
    <category android:name="android.intent.category.LAUNCHER" />
 </intent-filter>
</activity>

其他活动应该像这样声明,没有额外的权限。

<activity android:name=".SecondClassName"/>

所以声明成清单:

<activity
    android:screenOrientation="portrait"
    android:name=".MainActivity"
    android:label="@string/title_activity_main" >

</activity>

去除

<intent-filter>
     //
      </intent-filter>

从 MainActivity 声明的清单中。

于 2012-09-01T03:54:49.083 回答
0

你犯了一个愚蠢的错误,你的活动名称是MainActivity并且在你的意图调用中你已经将它声明为MAINACTIVITY因为这个原因发生了。就像——

finally {
                Intent openMenus = new Intent("com.slehmann.volumetimechanger.MainActivity");
                startActivity(openMenus);
            }
于 2012-09-01T01:40:27.793 回答