我正在尝试使用 ID 为“startGame”的按钮从活动“SelectionFragment”开始一个 android 活动名称“TheGame”SelectionFragment 文件的公共类是:
public class SelectionFragment extends Fragment {
这是包含 Intent 的代码:
public void startTheGame (View view) {
Intent intent = new Intent(this, TheGame.class);
startActivity(intent);
}
这就是我的清单文件的样子:
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.alexlamond.higherorlower"
android:versionCode="1"
android:versionName="1.0" >
<uses-permission android:name="android.permission.INTERNET" />
<application
android:allowBackup="true"
android:icon="@drawable/highlowlogo"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name="com.alexlamond.higherorlower.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>
<meta-data
android:name="com.facebook.sdk.ApplicationId"
android:value="@string/app_id" />
<activity android:name="com.facebook.LoginActivity" >
</activity>
<activity
android:name="com.alexlamond.higherorlower.TheGame"
android:label="@string/title_activity_the_game" >
</activity>
</application>
我的问题是 Intent 不起作用,当我得到 Eclipse 关于如何修复它的建议时,它说:
构造函数 Intent(SelectionFragment, Class) 未定义