我创建了一个安卓按钮。
Button btnSubmit=(Button) findViewById (R.id.btnSubmit);
当我输入时,(btnSubmit。)
伊恩得到没有默认提案..
我什至更改了 Windows->Pref->java->content Assist->checked all java proposal 中的设置..
我什至改变了工作空间..
但是没有生成智能
我做错了。
我正在尝试从我应该从函数中执行的类中访问属性。
问题解决了。谢谢您的帮助。
我希望你按照这样的顺序做所有事情:
1.在 res/layout/your_layout.xml 创建布局
2.Put按钮在这个布局中:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="Button text"
android:id="@+id/btnSubmit"/>
3.然后在你的活动中(onCreate)
Button btnSubmit = (Button) findViewById (R.id.btnSubmit);