我有以下情况。我的应用程序中有 2 个包。com.example.package1; org.otherexample.package2;
我在清单中声明如下:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.example.package1"
android:versionCode="1"
android:versionName="1.0" >
<activity android:name=".ActivityfromPackage1"/>
<activity android:name="org.otherexample.package2.ActivityFromPackage2"/>
</manifest>
这是清单,现在我想从 ActivityFromPackage1 ActivityFromPackage2 调用我已经这样做了:
import org.otherexample.package2.ActivityFromPackage2
..........
Intent intent = new Intent(this,ActivityFromPackage2.class);
startActivity(intent);
我收到以下错误:
Unable to start Activity com.example.package1/org.otherexample.package2.ActivityFromPackage2:
JavaLang nullpointer exception
如何调用活动?非常感谢。