代码完成不适用于外部库 XML 属性(Android Studio)
Code completion does not work for External Library XML attributes (Android Studio)
我正在使用 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
我遇到了同样的问题。但我已经解决了。
Go File > Invalidate Caches / Restart... > 单击 Invalidate and Restart
这是一种有效的方式。你可以试试
来源:Android Studio - Auto complete and other features not working
注意:这里还有一些其他方法。看看。
我正在使用 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
我遇到了同样的问题。但我已经解决了。 Go File > Invalidate Caches / Restart... > 单击 Invalidate and Restart 这是一种有效的方式。你可以试试
来源:Android Studio - Auto complete and other features not working
注意:这里还有一些其他方法。看看。