我是android编程的新手,基本上是在制作一个应用程序,当我点击
按钮文本将更改…这是我的密码…

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    Button HimanshuButton = (Button) findViewById(R.id.HimanshuButton);
    HimanshuButton.setOnClickListener(
            new Button.OnClickListener() {
                public void OnClick(View v){
                    TextView HimanshuText = (TextView)findViewById(R.id.HimanshuText);
                    HimanshuText.setText("Great Himanshu Rahi");

在这个
button.onClickListener给了我一个错误,就像下面的红色线。

最佳答案

一个更好更整洁的方法是
使用此方法,完成此操作后,它将要求您实现setonclicklistener接口himanshubutton.setonclicklistener(this);

protected void onCreate(Bundle savedInstanceState) {
    Button HimanshuButton = (Button) findViewById(R.id.HimanshuButton);
    HimanshuButton.setOnClickListener(this);
}

@override
public void onClick(){
    TextView HimanshuText = (TextView)findViewById(R.id.HimanshuText);
    HimanshuText.setText("Great Himanshu Rahi");
}

关于android - Button.OnClickListener()给出错误,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/38572572/

10-09 01:29