xmlns: 引入自定义card布局,编译不通过

时间:2021-03-12 18:13:35

说明:引用了card布局,原引入如下:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card="http://schemas.android.com/apk/res/com.stone.card" //引入的自定义布局
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:orientation="vertical">

路径是对的,但是AndroidStudio代码不会报错,变异不通过。

找不到原因,最后使用全局的引用,可以了:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:card="http://schemas.android.com/apk/res-auto" //使用全局的
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#fff"
android:orientation="vertical">

git地址: https://github.com/xmuSistone/android-card-slide-panel