我这里有非常令人沮丧的问题,我有这个密码:
Button b = findViewById(android.R.id.button1);
我得到这个错误在它上:
类型不匹配: 无法将窗体转换为按钮视图
但按钮 1 < strong> 是一个按钮!!! 在我的 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;
}
为什么我说我的按钮是一个景色,而它其实是一个按钮... 是一个谜。