为标签RelativeLayout找到了意外的命名空间前缀"app" - Android?

12 android android-relativelayout bottom-sheet

我需要使用BottomSheetBehavior,ScrollView但它告诉我:

Unexpected namespace prefix "app" found for tag RelativeLayout

app:behavior_hideable="true"
app:behavior_peekHeight="80dp"
Run Code Online (Sandbox Code Playgroud)

这是我的xml:

<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/ABLList"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:theme="@style/AppTheme.AppBarOverlay">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="?attr/actionBarSize"
                android:background="?attr/colorPrimary"
                app:popupTheme="@style/AppTheme.PopupOverlay">

                <LinearLayout
                    android:layout_width="match_parent"
                    android:layout_height="match_parent"
                    android:gravity="end"
                    android:orientation="horizontal">

                    <ImageButton
                        android:id="@+id/imbDetail"
                        android:layout_width="wrap_content"
                        android:layout_height="wrap_content"
                        android:layout_gravity="end|center_vertical"
                        android:layout_marginRight="10dp"
                        android:background="@null"
                        android:src="@drawable/ic_action_detail" />
                </LinearLayout>
            </android.support.v7.widget.Toolbar>

        </android.support.design.widget.AppBarLayout>

        <android.support.v7.widget.RecyclerView
            android:id="@+id/recycler_OrderList"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_below="@+id/ABLList"
            android:scrollbars="vertical" />
    </RelativeLayout>

    <ScrollView
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <RelativeLayout
            android:id="@+id/layout_bottom_sheet_ListOrder"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:layout_gravity="top"
            android:background="@color/color_bottom_sheet"
            android:gravity="top"
            app:behavior_hideable="true"
            app:behavior_peekHeight="80dp"
            app:layout_behavior="@string/string_bottom_sheet_behavior">

            <com.example.asheq.utils.TextViewJus
                android:id="@+id/txtAddress"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_marginTop="@dimen/text_marginTop"
                android:gravity="right"
                android:maxLines="5"
                android:paddingLeft="@dimen/activity_vertical_margin"
                android:paddingRight="@dimen/activity_vertical_margin"
                android:textSize="@dimen/text_size"
                android:textStyle="bold" />

            <Button
                android:id="@+id/btnSReport"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:layout_below="@+id/txtCTime"
                android:layout_marginTop="50dp"
                android:text="@string/btnReport" />

        </RelativeLayout>
    </ScrollView>

    <android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/coordinatorOrder"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true" />
</android.support.design.widget.CoordinatorLayout>
Run Code Online (Sandbox Code Playgroud)

Khe*_*raj 14

在布局中使用数据绑定时,此问题众所周知。

假设您要使用带有app:前缀的某些数据绑定属性,那么仅添加xmlns:app...是不够的。layout应该是<layouttag 包裹的数据绑定布局。

错误的方法:

例如我导入layout_toolbar_default.xmlapp:toolbarTitle用于指定title

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    >

    <include
        layout="@layout/layout_toolbar_default"
        app:toolbarTitle="@{@string/app_name}"
        />

</LinearLayout>
Run Code Online (Sandbox Code Playgroud)

这将显示错误Unexpected namespace prefix "app" found

解:

<layout因为您使用的是绑定属性,所以用标签包裹布局。

<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        >

        <include
            layout="@layout/layout_toolbar_default"
            app:toolbarTitle="@{@string/app_name}"
            />

    </LinearLayout>
</layout>
Run Code Online (Sandbox Code Playgroud)


小智 6

android.support.v7.widget.LinearLayoutCompat 的使用

<android.support.v7.widget.LinearLayoutCompat
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:behavior_hideable="true"
            app:behavior_peekHeight="80dp"
            app:layout_behavior="@string/string_bottom_sheet_behavior">

</android.support.v7.widget.LinearLayoutCompat>
Run Code Online (Sandbox Code Playgroud)

  • 现在最好使用 AndroidX 库。 (2认同)

Val*_*ler 5

我遇到过同样的问题.只需将底页布局放入单独的文件中即可.并通过include标签将其包含在主要布局中.


M. *_*cik 5

对于使用 androidx 的人,如果您有来自某个 androidx 视图的子视图,它们也应该是 androidx 视图,以便能够识别应用程序命名空间前缀。例如,而不是:

<ImageView/> 你应该使用 <androidx.appcompat.widget.AppCompatImageView/>

这不是有害的,如果您使用一些无法支持的功能(例如 ImageView 的色调),它会提供对较低 api 版本的支持:)


Sur*_*Rao 0

xmlns:app="http://schemas.android.com/apk/res-auto"
Run Code Online (Sandbox Code Playgroud)

这是多次设置的。都在CoordinatorLayoutRelativeLayout. 删除 中的一项RelativeLayout。在文件中声明一次就足够了。