意图不工作(显示错误)

时间:2012-09-17 05:03:49

标签: android android-intent

在启动intent on image按钮时单击“Intent intent = new Intent(this,Settings.class);”在日食中显示错误。我的代码有什么问题吗?这是我的代码..帮助赞赏..

imageButton =(ImageButton)findViewById(R.id.imageButton4);
        imageButton.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

                Intent intent = new Intent(this,Settings.class);
                startActivity(intent);

            }
        });

6 个答案:

答案 0 :(得分:1)

您应该使用getApplicationContext()代替this

public void onClick(View v) {
       Intent intent = new Intent(getApplicationContext(), Settings.class);
       startActivity(intent);
      }
});

答案 1 :(得分:1)

你必须做两件事 第一 像这样开始你的活动

Intent intent = new Intent(getBaseContext,Setting.class); startActivity(意向);

第二件事将这个类提到Android manifest.xml中 内部应用标签 低于默认活动标签

我认为这样你可以解决你的问题。

答案 2 :(得分:0)

尝试以下代码。

 public void onClick(View v) {


                Intent intent = new Intent(yourclassName.this,Settings.class);
                startActivity(intent);

            }
        });

答案 3 :(得分:0)

这样做

imageButton =(ImageButton)findViewById(R.id.imageButton4);
        imageButton.setOnClickListener(new View.OnClickListener() {

            public void onClick(View v) {

                Intent intent = new Intent(YourCurrentCLass.this,Settings.class);
                startActivity(intent);

            }
        });

并检查您的清单

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
    package="com.sampledatabase"
    android:versionCode="1"
    android:versionName="1.0" >

    <uses-sdk
        android:minSdkVersion="8"
        android:targetSdkVersion="15" />

    <application
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:name=".MainActivity"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="android.intent.action.MAIN" />

                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter>
        </activity>
    </application>

</manifest>

如果您只看到<category android:name="android.intent.category.LAUNCHER" />

且没有<category android:name="android.intent.category.DEFAULT" />

创建一个像这样的新活动

<activity
            android:name=".Settings"
            android:label="@string/title_activity_main" >
            <intent-filter>
                <action android:name="name.of.your.package.Settings" />

                <category android:name="android.intent.category.DEFAULT" />
            </intent-filter>
        </activity>

请记住将其放在与您的.MainActivity

相同的<application标记内

答案 4 :(得分:0)

Intent intent = new Intent(this,Settings.class);

使用这行代码

    Intent intent = new Intent(yourclassName.this,Settings.class);

    Because you using anonymus class for OnClickListener.
    So you can provide the reference with class name. this

答案 5 :(得分:-1)

在AndroidManifest.xml中添加您的设置活动