почему CoordinatorLayout показывает пустое пространство внизу? - PullRequest
0 голосов
/ 06 июня 2018

HI У меня есть основной 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"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent">

<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:background="#FFFFFF"
    android:fitsSystemWindows="true"
    tools:context=".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="@dimen/abc_action_bar_default_height_material"
            android:background="@color/fcolor"
            app:popupTheme="@style/AppTheme.PopupOverlay">

            <TextView
                android:id="@+id/toolbar_title"
                style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:layout_gravity="center"
                android:text="text"
                android:textColor="@color/scolor" />
        </android.support.v7.widget.Toolbar>

        <android.support.design.widget.TabLayout
            android:id="@+id/tab_layout"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_below="@+id/toolbar"
            android:background="?attr/colorPrimary"
            android:elevation="2dp"
            android:minHeight="?attr/actionBarSize"
            android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
            app:tabGravity="fill"
            app:tabMode="fixed" />
    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/content_main" />
</android.support.design.widget.CoordinatorLayout>


<android.support.design.widget.NavigationView
    android:id="@+id/nvView"
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_gravity="start"
    android:background="@android:color/white"
    app:headerLayout="@layout/navigation_header"
    app:menu="@menu/drawer_view" />

Как вы можете видеть, я добавляю свой основной контент в CoordinatorLayout с помощью тега Include

  <include layout="@layout/content_main" />

в основном содержимом XML у меня есть

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:showIn="@layout/actvity_main" tools:context=".Main">
<android.support.v4.view.ViewPager
    android:id="@+id/pager"
    android:layout_width="match_parent"
    android:layout_height="fill_parent"
    android:layout_below="@id/tab_layout"/>

 </RelativeLayout>

, затем я использовал другой макет XML с Mapview в RelativeLayout, чтобы показать в программе просмотра страниц

моя проблема, что всегда есть пустое место в нижней частиэкран слева от CoordinatorLayout, как показано ниже:

enter image description here

Как вы можете видеть, есть пустое пространство внизу, причина, почему я знаю, что это из CoordinatorLayout, потому чтокогда я изменяю фон CoordinatorLayout, он меняет цвет пространства

, кажется, что мой тег включения не масштабируется по высоте для всех экранов, даже если я установил

    <include
        layout="@layout/content_main"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

все так же, Мне нужно сделать масштаб MapView и заполнить нижнюю часть экрана

Ответы [ 4 ]

0 голосов
/ 06 июня 2018

В основном содержании попробуйте удалить из RelativeLayout:

android:paddingBottom="3dp"

Из ViewPager, перемещая: android:layout_below="@id/tab_layout" в <include layout="@layout/content_main" />

и вViewPager, меняется:

android:layout_height="fill_parent" на android:layout_height="match_parent"

0 голосов
/ 06 июня 2018

Попробуйте это.

попробуйте ввести свой код Java

mapView.setBuiltInZoomControls(true); 
int level = mapView.getZoomLevel();
MapController mc = mapView.getController();
mc.setZoom(level + 3);

и свой xml

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

            <android.support.v4.view.ViewPager
                android:id="@+id/pager"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:layout_alignParentBottom="true"
                android:layout_alignParentLeft="true"
                android:layout_alignParentRight="true"
                android:layout_alignParentTop="true" />

        </RelativeLayout>

Дайте мне знать, работает ли он для вас.

0 голосов
/ 06 июня 2018

похоже, проблема заключалась в том, что я добавил значение отступа в коде Java. Спасибо всем, кто помог мне проверить заполнение внутри моего кода

0 голосов
/ 06 июня 2018

В main.xml, удалить android:paddingBottom="3dp".

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...