Je dois utiliser BottomSheetBehavior
avec ScrollView
mais il me dit:
Unexpected namespace prefix "app" found for tag RelativeLayout
app:behavior_hideable="true"
app:behavior_peekHeight="80dp"
Voici mon 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>
J'ai eu le même problème. Il suffit de sortir votre mise en page de fond dans le fichier séparé. Et incluez-le dans la mise en page principale via la balise include
.
Ce problème est bien connu dans l'utilisation de data-binding dans une présentation.
Supposons que vous souhaitiez utiliser un attribut de liaison de données avec le préfixe app:
, ajouter simplement xmlns:app...
ne suffira pas. layout doit être data layout layout entouré de <layout
tag .
par exemple. J'ai importé layout_toolbar_default.xml
et utiliser app:toolbarTitle
pour spécifier 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>
Ceci affichera l'erreur Unexpected namespace prefix "app" found
.
Enveloppez votre mise en page avec la balise <layout
car vous utilisez un attribut de liaison.
<?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>
Essayez de définir votre espace de noms xmlns
une fois dans la présentation parent si vous comptez l'utiliser plusieurs fois.
xmlns:app="http://schemas.Android.com/apk/res-auto"
xmlns:Android="http://schemas.Android.com/apk/res/Android"
Écrire cette déclaration une fois dans votre parent CoordinatorLayout
suffira.
Astuce: lorsque vous utilisez plusieurs modèles et vues, essayez d'implémenter l'attribut <include/>
. Cela rendra votre code propre et facilement lisible.
xmlns:app="http://schemas.Android.com/apk/res-auto"
Ceci est défini plusieurs fois. Dans CoordinatorLayout
et RelativeLayout
. Supprimez celle dans RelativeLayout
. Une déclaration dans le fichier suffit.
Utilisation de 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>
Si vous obtenez l'erreur similaire Unexpected namespace prefix “app” found
sur textView, vous devrez peut-être remplacer TextView
par Android.support.v7.widget.AppCompatTextView
.