我在这里遇到了非常令人沮丧的问题。我有这个代码:
Button b = findViewById(android.R.id.button1);
我收到了这个错误:
类型不匹配:无法将表单视图转换为按钮
但是button1是一个按钮!!在我的 XML 布局文档中,按钮的声明如下:
<Button
android:id = "@+id/button1"
android:layout_width = "wrap_content"
android:layout_height = "wrap_content"
android:text = "Next Activity"
/>
在我的 R.java 中:
public static final class id {
public static final int button1=0x7f050000;
}
为什么我得到并错误地说我的按钮实际上是一个按钮时是一个视图......这是一个谜。