gpt4 book ai didi

Android 找不到 xml 项

转载 作者:行者123 更新时间:2023-11-29 20:53:35 25 4
gpt4 key购买 nike

我正在创建一个带有按钮的 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。谁能解释为什么这不起作用?

最佳答案

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

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

关于Android 找不到 xml 项,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28422147/

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