私がここで抱えている非常に苛立たしい問題。私はこのコードを持っています:
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;
}
ボタンが実際にはボタンであるのに、ボタンがビューであると誤解するのはなぜですか...謎です。