這裏是我的代碼,我需要把裏面的東西{}的按鈕鏈接到新的類或活動而第二page.java:我該如何製作一個新的打開一個新類的按鈕?
public void addListenerOnButton() {
ImageButton imageButton = (ImageButton) findViewById(R.id.imageButton1);
imageButton.setOnClickListener(new OnClickListener() {
/*What can I put here to open new class
,I mean another activity like secondp.java.*/
}
我試圖把下面的代碼,但我得到了以下錯誤:
The constructor Intent(new View.OnClickListener(){}, Class<List>) is undefined
代碼
@Override
public void onClick(View arg0) {
Intent k = new Intent(this,Secondp.class);
startActivity(k);
'this',在這種情況下,假冒的監聽器,而不是視圖。另外,'arg0',一個[View](http://developer.android.com/reference/android/view/View.html)沒有'getApplicationContext()'方法,但它有'getContext() '。 –
true true。回答編輯 –
@ A - C是否與getApplicationContext具有相同的上下文? –