使用外部库:找不到属性的资源标识符
Using external library: No resource identifier found for attribute
我正在我的应用程序中使用 BetterSpinner。
当我将 BetterSpinner 的 xml 添加到我的应用程序时,出现以下问题:
Namespace 'app' is not bound
我找到了解决方案 here 并将以下行添加到我的 xml 布局中:
xmlns:app="http://schemas.android.com/apk/res-auto"
现在没有解析问题了。
但是当我尝试 运行 应用程序时,出现编译错误:
Error:(32) No resource identifier found for attribute 'met_floatingLabel' in package 'com.example.jublikon'
我添加了这样的依赖:
compile ('com.weiwangcn.betterspinner:library-material:1.1.0') {
exclude group: 'com.android.support', module: 'appcompat-v7'
exclude group: 'com.rengwuxian.materialedittext', module: 'library'
}
为什么 Android Studio 找不到 gradle 完全包含的库的资源?
我完整的 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="10"
android:background="@color/colorPrimary"
android:id="@+id/main">
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="center"
android:gravity="center"
android:paddingLeft="32dp"
android:layout_weight="3"
android:textStyle="bold"
android:textColor="@android:color/white"
android:paddingRight="32dp"
android:textSize="28sp"
android:text="TITLE"
android:id="@+id/title"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:orientation="vertical"
android:gravity="center"
android:layout_weight="5">
<com.weiwangcn.betterspinner.library.material.MaterialBetterSpinner
android:id="@+id/spinner2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="MaterialBetterSpinner"
app:met_floatingLabel="normal" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="3"
android:layout_gravity="center"
android:gravity="center"
android:textColor="@android:color/white"
android:paddingLeft="64dp"
android:paddingRight="64dp"
android:textSize="16sp"
android:text="description"
android:id="@+id/description" />
<TextView
android:layout_width="fill_parent"
android:layout_height="64dp" />
</LinearLayout>
根据 BetterSpinner Github 页面上的问题 #23:
https://github.com/Lesilva/BetterSpinner/issues/23
您的依赖项中需要有 MaterialEditText
个依赖项。
你是不是像上面那个人一样排除了它post?
我正在我的应用程序中使用 BetterSpinner。
当我将 BetterSpinner 的 xml 添加到我的应用程序时,出现以下问题:
Namespace 'app' is not bound
我找到了解决方案 here 并将以下行添加到我的 xml 布局中:
xmlns:app="http://schemas.android.com/apk/res-auto"
现在没有解析问题了。 但是当我尝试 运行 应用程序时,出现编译错误:
Error:(32) No resource identifier found for attribute 'met_floatingLabel' in package 'com.example.jublikon'
我添加了这样的依赖:
compile ('com.weiwangcn.betterspinner:library-material:1.1.0') {
exclude group: 'com.android.support', module: 'appcompat-v7'
exclude group: 'com.rengwuxian.materialedittext', module: 'library'
}
为什么 Android Studio 找不到 gradle 完全包含的库的资源?
我完整的 xml 文件:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_weight="10"
android:background="@color/colorPrimary"
android:id="@+id/main">
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_gravity="center"
android:gravity="center"
android:paddingLeft="32dp"
android:layout_weight="3"
android:textStyle="bold"
android:textColor="@android:color/white"
android:paddingRight="32dp"
android:textSize="28sp"
android:text="TITLE"
android:id="@+id/title"/>
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="0dp"
android:orientation="vertical"
android:gravity="center"
android:layout_weight="5">
<com.weiwangcn.betterspinner.library.material.MaterialBetterSpinner
android:id="@+id/spinner2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="MaterialBetterSpinner"
app:met_floatingLabel="normal" />
</LinearLayout>
<TextView
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="3"
android:layout_gravity="center"
android:gravity="center"
android:textColor="@android:color/white"
android:paddingLeft="64dp"
android:paddingRight="64dp"
android:textSize="16sp"
android:text="description"
android:id="@+id/description" />
<TextView
android:layout_width="fill_parent"
android:layout_height="64dp" />
</LinearLayout>
根据 BetterSpinner Github 页面上的问题 #23: https://github.com/Lesilva/BetterSpinner/issues/23
您的依赖项中需要有 MaterialEditText
个依赖项。
你是不是像上面那个人一样排除了它post?