我正在使用Android Studio 1.1 RC 1
。
我已将外部库导入Gradle:
compile 'com.rengwuxian.materialedittext:library:1.8.3'
我已经添加了命名空间标记:
xmlns:app="http://schemas.android.com/apk/res-auto"
进入父母,如下所示:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/primary_light"
android:orientation="vertical"
android:padding="20dp"
tools:context="net.xxx.xxx.ui.activities.Activity"/>
我获得了库中自定义视图的代码完成,即:
<com.rengwuxian.materialedittext.MaterialAutoCompleteTextView />
但是当我尝试为此视图的属性执行代码完成时,没有任何内容出现。我必须手动输入所有这些内容。
<com.rengwuxian.materialedittext.MaterialAutoCompleteTextView
android:id="@+id/autocomplete"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:completionThreshold="3"
android:hint="Enter name"
android:imeOptions="actionDone"
app:floatingLabel="normal"
app:floatingLabelText="Find xxx"/>
我缺少设置或导入吗?
有用信息 可以在此处找到库中的属性文件。 https://github.com/rengwuxian/MaterialEditText/blob/master/library/src/main/res/values/attrs.xml
答案 0 :(得分:7)
我有同样的问题。但我已经解决了。 转到文件&gt;无效缓存/重新启动...&gt;单击Invalidate并重新启动 这是一种有效的方式。你可以试试。
来源:Android Studio - Auto complete and other features not working
注意:以下是其他一些方法。看看。