从android应用程序启动库活动

时间:2014-11-29 09:59:20

标签: android android-intent manifest implicit

您好我正在做一些实验,其中我有一个样本库项目,其中包含一个示例活动。我已将该库项目包含在我的主项目中。现在我想从我的主项目中启动我的库项目中的示例活动。我试过这种方法有以下几种方法,但它给出了错误class not found error

// my library manifest file... No activity define inside it...
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.androidvideoapp"
android:versionCode="1"
android:versionName="1.0" >

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >

</application>

</manifest>

以下是主要项目清单。

// inside main project manifest...

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.androidvideoapp2"
android:versionCode="1"
android:versionName="1.0" >

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

<application
    android:allowBackup="true"
    android:icon="@drawable/ic_launcher"
    android:label="@string/app_name"
    android:theme="@style/AppTheme" >
    <activity
        android:name=".CustomActivity"
        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="com.example.androidvideoapp.MainActivity" // this is my library activity...
        android:label="@string/app_name">
        <intent-filter> 
            <action android:name="com.example.androidvideoapp2.AddVideoActivity"/>
            <category android:name="android.intent.category.DEFAULT"/>        
        </intent-filter>
    </activity>

</application>

</manifest>

我正试图以下列方式开启此活动......

startActivity(new Intent("com.example.androidvideoapp2.AddVideoActivity"));

但是它给出了以下错误

11-29 15:13:26.404: E/AndroidRuntime(14428): FATAL EXCEPTION: main
11-29 15:13:26.404: E/AndroidRuntime(14428): java.lang.RuntimeException: Unable to        instantiate activity     ComponentInfo{com.example.androidvideoapp2/com.example.androidvideoapp.MainActivity}: 

java.lang.ClassNotFoundException: com.example.androidvideoapp.MainActivity

我做错了什么。需要一些帮助。谢谢。

0 个答案:

没有答案