image showing no suggestions for xml autocompletion
在Android Studio中我创建了一个新的XML文件正如你所看到的,当我按下ctrl + space进行自动完成时,它说没有建议
我已经尝试了Stack Overflow中类似问题的所有解决方案,但没有一个能够工作
我可以添加任何gradle依赖吗?
非常感谢
答案 0 :(得分:2)
答案 1 :(得分:0)
确保您在最后一个结束括号>之前输入您的代码,例如:
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"> // code needs to be typed before this bracket
//not here
</LinearLayout>
答案 2 :(得分:0)
解决此问题的正确方法。手动删除Android Studio表单文件夹的缓存,然后重新启动Android Studio。
一切正常。
答案 3 :(得分:0)
从项目中删除.idea文件夹和.iml文件,执行Invalidate and Restart。 这对我有用。