Warning: file_get_contents(/data/phpspider/zhask/data//catemap/9/java/352.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Java 向上滑动面板android构建失败_Java_Android_Xamarin - Fatal编程技术网

Java 向上滑动面板android构建失败

Java 向上滑动面板android构建失败,java,android,xamarin,Java,Android,Xamarin,我正在尝试创建一个向上滑动的面板 我已经从nuget下载了umano向上滑动面板。 这是我的xml <?xml version="1.0" encoding="utf-8"?><!--suppress ALL --> <com.sothree.slidinguppanel.SlidingUpPanelLayout xmlns:sothree="http://schemas.android.com/apk/res-auto" android:layo

我正在尝试创建一个向上滑动的面板 我已经从nuget下载了umano向上滑动面板。 这是我的xml

<?xml version="1.0" encoding="utf-8"?><!--suppress ALL -->
<com.sothree.slidinguppanel.SlidingUpPanelLayout
     xmlns:sothree="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_gravity="bottom"
    android:gravity="bottom"
    sothree:umanoPanelHeight="68dp"
    sothree:umanoShadowHeight="4dp"
    >
    <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="main"/>
</com.sothree.slidinguppanel.SlidingUpPanelLayout>

我正在将严重性代码描述项目文件行置于抑制状态 分析XML时出错:未绑定前缀
如何修复此问题?

您还没有将
android
xml名称空间添加到您的SlidengAppAnnellayout中。将此添加到您的SlidengUppannelLayout:

    xmlns:android="http://schemas.android.com/apk/res/android"

是否确实,您使用的视图可以用作其他布局的容器?