在自动完成中不能使用layout_alignParentTop等

时间:2017-09-15 18:51:19

标签: android autocomplete

我想在android studio中使用自动完成功能,但它并不适用于所有代码选项。我无法为TextView.setText,layout_alignParentTop和许多其他东西获得自动完成功能。我查看了其他问题,但他们的问题仅适用于xml标签。我的是整个项目。

根据我输入的文字,在我输入之前我收到一个红色错误: 缺失值验证android xml文件中的资源引用

如果你看到图片,则没有android:layout_alignParentTop

的选项

enter image description here

1 个答案:

答案 0 :(得分:1)

这取决于您使用的视图组。您打算使用的布局参数属于特定的视图组,因此自动完成功能不会显示该选项。

我建议您阅读View GroupsLayout Parameters

您的文本视图必须位于相对布局组中,如此

<RelativeLayout
    //codes >
   <TexView
       android:layout_ //you should already see suggestions here />
</RelativeLayout>