0

画像ボタンでインテントを開始しているときに、[インテントインテント= new Intent(this、Settings.class);]をクリックします。Eclipseでエラーを示しています。私のコードに何か問題がありますか?これが私のコードです。

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);

            }
        });
4

6 に答える 6

1

あなたは2つのことをしなければなりません最初にこのようにあなたの活動を始めてください

インテントインテント=newIntent(getBaseContext、Setting.class); startActivity(intent);

次に、デフォルトのアクティビティタグの下にあるアプリケーションタグ内のAndroidマニフェスト.xmlにこのクラスを記載します

このようにして問題を解決できると思います。

于 2012-09-17T05:12:54.773 に答える
1

getApplicationContext()代わりに使用する必要がありますthis

public void onClick(View v) {
       Intent intent = new Intent(getApplicationContext(), Settings.class);
       startActivity(intent);
      }
});
于 2012-09-17T05:06:31.487 に答える
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
于 2012-12-13T20:53:54.013 に答える
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>

<application.MainActivity と同じようにタグ内に配置することを忘れないでください

于 2012-09-17T05:16:52.193 に答える
0

以下のコードを試してください。

 public void onClick(View v) {


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

            }
        });
于 2012-09-17T05:08:06.173 に答える
-1

AndroidManifest.xmlに設定アクティビティを追加します

于 2012-09-17T05:06:31.017 に答える