gpt4 book ai didi

java - Android Studio编译器错误: cannot find a method listed in android studio tutorial

转载 作者:行者123 更新时间:2023-12-01 13:07:38 25 4
gpt4 key购买 nike

我是 android studio 的新手,我正在阅读位于此处的 i-programmer 教程 ( http://www.i-programmer.info/programming/android/5914-android-adventures-activity-and-ui.html?start=2 )

环境中的两个对象是一个按钮和一个实例化的大文本小部件在android studio的xml设计器中。

问题:当我尝试运行代码时,教程中引用的设置文本的方法显示此错误消息:错误:找不到符号方法 setText(String)

文本编辑器中显示此错误:无法解析方法“setText(java.lang.String)”

提供的源代码:

package com.example.helloworld1.helloworld1;

import android.support.v7.app.ActionBarActivity;
import android.os.Bundle;
import android.view.Menu;
import android.view.MenuItem;
import android.view.View;
import android.widget.Button;

public class MainActivity extends ActionBarActivity {

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


@Override
public boolean onCreateOptionsMenu(Menu menu) {

// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
}

@Override
public boolean onOptionsItemSelected(MenuItem item) {
// Handle action bar item clicks here. The action bar will
// automatically handle clicks on the Home/Up button, so long
// as you specify a parent activity in AndroidManifest.xml.
int id = item.getItemId();
if (id == R.id.action_settings) {
return true;
}
return super.onOptionsItemSelected(item);
}
public void onButtonClick(View v){
Button button=(Button) v;
v.setText("I've Been Clicked!"); // This is where the error happens
}
}

最佳答案

我认为您打算使用button而不是v

button.setText("I've Been Clicked!");

关于java - Android Studio编译器错误: cannot find a method listed in android studio tutorial,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/23146888/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com