CoordinatorLayout和MapFragment

时间:2015-11-04 19:47:08

标签: android android-viewpager android-coordinatorlayout

我在我的应用上使用ViewPagerRecyclerView来显示标签。其中一个标签有MapFragment,另一个标签有<?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"> <android.support.v4.view.ViewPager android:id="@+id/view_pager" android:layout_width="match_parent" android:layout_height="match_parent" app:layout_behavior="@string/appbar_scrolling_view_behavior" /> <android.support.design.widget.AppBarLayout android:layout_width="match_parent" android:layout_height="wrap_content" android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"> <android.support.v7.widget.Toolbar android:id="@+id/toolbar" android:layout_width="match_parent" android:layout_height="?attr/actionBarSize" android:background="?attr/colorPrimary" app:contentInsetStart="72dp" app:navigationIcon="@drawable/ic_logo" app:layout_scrollFlags="scroll|enterAlways" app:popupTheme="@style/ThemeOverlay.AppCompat.Light" /> <android.support.design.widget.TabLayout android:id="@+id/tab_layout" android:layout_width="match_parent" android:layout_height="wrap_content" /> </android.support.design.widget.AppBarLayout> </android.support.design.widget.CoordinatorLayout> 。我没有遇到任何问题,除了地图似乎在屏幕外。

以下是它的外观:

dirAllowed parameter to false

这是代码:

@echo off
FOR /F "tokens=2 delims=:" %%G in ('find /I "this is dummy text" ^<C:\x.txt') DO set var=%%G
echo %var%

当你向上滚动然后你看到地图和按钮很好,但我希望地图适合屏幕,我该怎么做?

1 个答案:

答案 0 :(得分:0)

替换你的CoordinatorLayout线性或相对布局,看看这是否能解决你的问题,我注意到当你移动地图时,CoordinatorLayout中的MapFragment会导致一些奇怪的震动结果。