【发布时间】:2015-03-08 00:50:41
【问题描述】:
我正在使用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
【问题讨论】:
标签: android android-studio android-library