可能重复:
在 Java 中访问内部类的包含类
我知道这肯定已经得到了回答,但是我已经连续两个晚上一直在研究这个问题,我要么不明白,要么把事情搞砸了。我正在尝试使用按钮调用方法。我的方法只是复制和粘贴,所以它不会打开另一个活动。
package com.example.copypastetest;
import android.app.Activity;
import android.content.Intent;
import android.os.Bundle;
import android.view.Menu;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.Button;
public class PDFtester extends Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_pdftester);
Button b1 = (Button) findViewById(R.id.button2);
b1.setOnClickListener(new OnClickListener(){;
@Override
public void onClick(View arg0) {
// TODO Auto-generated method stub
//public void work (View view){
this is my issue??-->Intent intent = new Intent(this, copyAsset.class);
startActivity(intent);}
}
}
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.activity_pdftester, menu);
return true;}
};
谢谢你的关注,我承认我是一个彻头彻尾的黑客。我做到这一点的唯一原因是这个网站,第一个问题,我相信很多人,但希望有人能提供帮助。我并不是想成为吸血鬼,但如果有一个页面我可以阅读以了解我做错了什么,我真的在这里寻找正确的答案,我全神贯注。
谢谢。