源码如下:
Intent intent = new Intent();
intent.setClass(Testttt.this, MsgDetail.class);
intent.putExtra("item0", “1”);
startActivity(intent);
这次我在AndroidManifest.xml中配置了MsgDetail
<application
android:allowBackup="true"
android:icon="@drawable/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.example.feedbackmsg.MainActivity"
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.feedbackmsg.Testttt"/>
<activity android:name="com.example.feedbackmsg.manager.MsgDetail"/>
</application>
log如图:
------解决方案--------------------
空指针问题,不是你配置的问题,MsgDetail里的问题吧