我正在尝试从活动'SelectionFragment'启动一个Android活动名称'TheGame',其中一个ID为'startGame'的按钮 SelectionFragment文件的公共类是:
public class SelectionFragment extends Fragment {
这是包含Intent的代码:
public void startTheGame (View view) {
Intent intent = new Intent(this, TheGame.class);
startActivity(intent);
}
这就是我的Manifest文件的样子:
<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>
我的问题是当我得到Eclipse关于如何解决它的建议时,Intent将无法工作,它说:
构造函数Intent(SelectionFragment,Class)未定义
答案 0 :(得分:1)
如果您要从片段中启动活动,请尝试以下操作:
public void startTheGame (View view) {
Intent intent = new Intent(getActivity(), TheGame.class);
startActivity(intent);
}
答案 1 :(得分:1)
您的onClick
属性必须通过精确命名与具有相同名称的公共方法匹配。您有属性android:onClick="TheGame"
,方法签名为public void startTheGame (View view)
。将onClick
属性值更改为"startTheGame"
。
但是,我宁愿使用View.OnClickListener
而不是设置onClick
属性,因为:
MVC
。