Android无法找到xml项目

时间:2015-02-10 00:37:18

标签: android xml

我正在用按钮创建一个Android应用程序,我的xml看起来像这样:

<Button
    android:id="@+id/start"
    android:text="Start"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

然后我想在我的主要课程中获得Button,但我不能。

Button start;
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main_menu);
    start = findViewById(R.id.start);
}

但是当我这样做时,应用程序因为此行的错误而无法运行:

start = findViewById(R.id.start);

但我绝对认定了Button。任何人都可以解释为什么这不起作用吗?

1 个答案:

答案 0 :(得分:2)

方法findViewById()返回View。您需要将其转换为Button

start = (Button) findViewById(R.id.start);