我正在尝试创建一个向上滑动的面板 我已经从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时出错:未绑定前缀 我该如何解决?
答案 0 :(得分:1)
您尚未将android
xml名称空间添加到SlidingUpPanelLayout中。将此添加到您的SlidingUpPanelLayout中:
xmlns:android="http://schemas.android.com/apk/res/android"