Mapbox地图占据整个屏幕

时间:2017-04-18 09:05:54

标签: android android-layout mapbox

我的Android应用程序中有一个mapbox地图,但它总是占用整个屏幕。我想让它与下面的内容一样大。

这是我的代码(设置固定大小也不起作用):

<?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.travip.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"
        app:popupTheme="@style/AppTheme.PopupOverlay" />

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

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="vertical"
    app:layout_behavior="@string/appbar_scrolling_view_behavior">

    <com.mapbox.mapboxsdk.maps.MapView
        android:id="@+id/mapview"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"/>

    <TextView
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:text="Hello" />

</LinearLayout>

2 个答案:

答案 0 :(得分:1)

变化

android:layout_height="wrap_content"

android:layout_height="match_parent"

线性布局

中的

答案 1 :(得分:0)

感谢您的帮助! 我不小心打电话给

View rootView = inflater.inflate(R.layout.fragment_map, container, false);

而不是

View rootView = inflater.inflate(R.layout.fragment_nearby, container, false);

我的片段夸大了错误的布局。我没有注意到,因为它们看起来几乎相同