0

我正在尝试使用 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) 未定义

4

2 回答 2

1

您的onClick属性必须通过精确命名与具有相同名称的公共方法匹配。你有属性android:onClick="TheGame",方法签名是public void startTheGame (View view). onClick将属性值更改为"startTheGame"

但是,我宁愿使用View.OnClickListener而不是设置onClick属性,因为:

  1. 从长远来看,您可能会重用/移动/更改此布局,最终您将遇到相同的错误。
  2. 您可能会进行一些重构,并且您可能会意外或无意地更改此方法,编译器不会抱怨。
  3. 在我看来,在 UI 和模型之间设置这种类型的链接违反了MVC.
于 2013-07-16T21:09:59.133 回答
1

如果您从片段开始活动,请尝试以下操作:

public void startTheGame (View view) {

Intent intent = new Intent(getActivity(), TheGame.class);
startActivity(intent);

}
于 2013-07-16T20:38:31.673 回答