我创建了一个Android按钮。
Button btnSubmit=(Button) findViewById (R.id.btnSubmit);
当我输入时,(btnSubmit。)
Ian得到没有默认提案..
我甚至更改了Windows中的设置 - > Pref-> java->内容Assist->检查了所有java提案..
我甚至改变了工作空间..
但是没有生成intelliscence
答案 0 :(得分:0)
我希望你按照这样的顺序做所有事情:
1.在res / layout / your_layout.xml
创建布局2.此布局中的按钮:
<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);
答案 1 :(得分:0)
我犯了一个错误。
我试图从类中访问我应该从函数中执行的属性。
问题解决了。谢谢你的帮助。