我有两节课。主要类是BundleActivity,另一个是子类。 我正在尝试从BundleActivity开始子活动,但它不起作用,应用程序正在强行关闭。
这是我在BundleAcitvity类中的onClick方法:
public void onClick(View v) {
// TODO Auto-generated method stub
Intent i=new Intent(this,sub.class);
this.startActivity(i);
}
我的清单文件:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.bundle"
android:versionCode="1"
android:versionName="1.0" >
<uses-sdk android:minSdkVersion="8" />
<application
android:icon="@drawable/ic_launcher"
android:label="@string/app_name" >
<activity
android:name=".BundleActivity"
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=".sub"
android:label="@string/app_name" >
<intent-filter>
<action android:name="com.bundle.sub" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
</application>
</manifest>
有人帮我解决了吗?
答案 0 :(得分:0)
您是否为子活动创建了一个类? 据我所知,你的所有课程都必须以大写字母“Sub”开头。 对我来说,以及如果你不需要你在子活动中使用的意图过滤器,我感觉很棒。
您是否收到任何预编译错误? 运行时错误跟踪是什么?