当前位置:  开发笔记 > 编程语言 > 正文

无法解析方法setText(java.lang.String)

如何解决《无法解析方法setText(java.lang.String)》经验,为你挑选了1个好方法。

我已经看过类似于我得到的错误的其他问题,但我似乎无法在这里弄清楚这个问题.我要做的就是单击一个按钮并更改TextView的文本.

我的代码如下:

public class FindBeerActivity extends Activity {

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_find_beer);
}
//call when the user clicks the button
public void onClickFindBeer(View view) {

    //Get a reference to the TextView
    View brands = (TextView) findViewById(R.id.brands);

    //Get a reference to the Spinner
    Spinner color = (Spinner) findViewById(R.id.color);

    //Get the selected item in the Spinner
    String beerType = String.valueOf(color.getSelectedItem());

    //Display the beers. This is where the error is
    brands.setText(beerType);

  }
}

和XML

 

当我构建我得到:"错误:找不到符号方法setText(String)

我正在按照教程写信,我看不出我犯了哪个错误,所以如果你们能帮助我,我会很感激!谢谢!



1> Mohammed Aou..:

你可以改变

View brands = (TextView) findViewById(R.id.brands);

TextView brands = (TextView) findViewById(R.id.brands);

改变

brands.setText(beerType);

((TextView)brands).setText(beerType);

无论哪种方式,您都需要引用调用该setText方法TextView.

推荐阅读
mobiledu2402851203
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有