我在HomeActivity.xml文件中使用了androidx.coordinatorlayout.widget.CoordinatorLayout,我在其中使用了<include>
layout =“ @ layout / layout_top_tabs”>标签,该标签将布局放置在(0,0 )屏幕的位置(左上角),这不是我想要的。我在layout_top_tabs.xml文件中使用了<merge>
标签。当我删除<merge>
标记时,<include>
标记工作正常。我不知道我要去哪里错了。请帮忙!
activity_home.xml文件:
<?xml version="1.0" encoding="utf-8"?>
<androidx.coordinatorlayout.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".HomeActivity">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- Top Toolbar-->
<RelativeLayout
android:id="@+id/relLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<include layout="@layout/layout_top_tabs" />
</RelativeLayout>
</RelativeLayout>
</androidx.coordinatorlayout.widget.CoordinatorLayout>
layout_top_tabs.xml文件:
<merge xmlns:android="http://schemas.android.com/apk/res/android">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="50dp"
android:layout_alignParentTop="true">
<com.google.android.material.appbar.AppBarLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<androidx.appcompat.widget.Toolbar
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</androidx.appcompat.widget.Toolbar>
</com.google.android.material.appbar.AppBarLayout>
</RelativeLayout>
</merge>
我没有收到任何错误消息,但是布局没有出现,因为我已经在xml文件中定义了布局。