Предотвращение перекрытия макетов

#android #layout #overlap

#Android #макет #перекрытие

Вопрос:

Я включаю 2 макета в свой activity xml, теперь я хочу, чтобы второй макет не перекрывал первый, но мне действительно не удается это сделать….

Прилагается мой xml. Как я могу этого добиться?

 <?xml version="1.0" encoding="utf-8"?><android.support.v4.widget.DrawerLayout 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:id="@ id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:openDrawer="start">

<include
    android:id="@ id/header"
    layout="@layout/app_bar_yout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<include layout="@layout/content_youtube"
    android:layout_above="@id/header"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<android.support.design.widget.NavigationView
    android:id="@ id/nav_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:headerLayout="@layout/nav_header_main"
    app:menu="@menu/activity_main_drawer" />
  

Также мои 2 включенные макеты xml

app_bar_yout

 <?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"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context="com.mlopezitsolutions.blabla.MainActivity">

<android.support.design.widget.AppBarLayout
    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" />

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


<android.support.design.widget.FloatingActionButton
    android:id="@ id/fab"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="bottom|end"
    android:layout_margin="@dimen/fab_margin"
    android:src="@android:drawable/ic_dialog_email" />
  

content_youtube

 <?xml version="1.0" encoding="utf-8"?><RelativeLayout 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"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.mlopezitsolutions.blabla.MainActivity">


<WebView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:id="@ id/webView"
    android:layout_alignParentLeft="true"
    android:layout_alignParentStart="true"
    android:layout_alignParentBottom="true"
    android:layout_alignParentRight="true"
    android:layout_alignParentEnd="true" />
  

Ответ №1:

 android:layout_above="@id/header"
  

будет работать только с RelativeLayout. Я вижу, что оба ваших include не имеют никакого макета, такого как FrameLayout, RelativeLayout. Пожалуйста, поместите все 3 XML-файла в RelativeLayout, и он должен работать. Я вижу это из документации Android, которая включает в себя, должна использоваться только для повторного использования одних и тех же компонентов в нескольких местах.

Ответ №2:

Измените match_parent на требуемое значение, например: 75dp для layout_height s в

     <include
    android:id="@ id/header"
    layout="@layout/app_bar_yout"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<include layout="@layout/content_youtube"
    android:layout_above="@id/header"
    android:layout_width="match_parent"
    android:layout_height="match_parent" />

<android.support.design.widget.NavigationView
    android:id="@ id/nav_view"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:fitsSystemWindows="true"
    app:headerLayout="@layout/nav_header_main"
    app:menu="@menu/activity_main_drawer" />
  

ваш основной XML-код.

Комментарии:

1. уже пробовал это делать… Но макет content_youtube по-прежнему перекрывает макет заголовка …. ` <включить android: id=»@ id/header» layout=»@layout /app_bar_yout» android:layout_width=»match_parent» android:layout_height=»75dp» />content_youtube» android:layout_above=»@id /header» android:layout_width=»match_parent» android:layout_height=»10dp» /> `

Ответ №3:

Решение состояло в том, чтобы поместить оба «include» в один RelativeLayout и предоставить относительный запас между ними, используя либо

 android:layout_marginTop="15dp"
  

или

 android:layout_marginBottom="15dp"