Heim > Fragen und Antworten > Hauptteil
模拟了下百度地图的路线选择UI,底部用的bottomsheet。结果toolbar在4.1和4.4的机器上不显示。
下面是我的布局。为什么不显示呢?
<?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:id="@+id/parent"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/topbar"
android:layout_width="match_parent"
android:layout_height="252px"
android:background="@color/themered">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="150px"
android:background="@color/themered"
android:gravity="center_horizontal"
app:layout_scrollFlags="scroll|enterAlways">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="路线"
android:textColor="@color/milkwhite"
android:textSize="58px" />
</RelativeLayout>
</android.support.v7.widget.Toolbar>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_below="@+id/title"
android:layout_gravity="center_horizontal"
android:layout_marginLeft="80px"
android:layout_marginRight="80px"
android:layout_marginTop="20px"
app:layout_scrollFlags="scroll|enterAlways"
app:tabIndicatorColor="@color/milkwhite"
app:tabSelectedTextColor="@color/milkwhite"
app:tabTextColor="@color/alphawhite">
</android.support.design.widget.TabLayout>
</android.support.design.widget.AppBarLayout>
<com.baidu.mapapi.map.MapView
android:id="@+id/mapView"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_below="@+id/topbar" />
<android.support.v4.widget.NestedScrollView
android:id="@+id/scrollview"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:behavior_peekHeight="370px"
app:layout_behavior="android.support.design.widget.BottomSheetBehavior">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/milkwhite"
android:orientation="vertical">
<ImageView
android:id="@+id/iv_expand"
android:src="@mipmap/icon_uparrow"
android:layout_gravity="center_horizontal"
android:layout_marginTop="10px"
android:layout_width="40px"
android:layout_height="40px" />
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="330px">
</android.support.v4.view.ViewPager>
<android.support.v7.widget.RecyclerView
android:id="@+id/stepList"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
<!-- 这是个底部填充层,并无实际作用 -->
<ImageView
android:background="@color/milkwhite"
android:layout_width="match_parent"
android:layout_height="200dp" />
</LinearLayout>
</android.support.v4.widget.NestedScrollView>
</android.support.design.widget.CoordinatorLayout>
黄舟2017-04-17 16:25:40
CoordinatorLayout本质上是FrameLayout,在5.0以下的机器上,由于没有z,MapView把AppBarLayout盖住了。
5.0以上AppBarLayout不会被盖住,应该是有默认的z属性。
阿神2017-04-17 16:25:40
题主说在4.1/4.4的手机上面不显示,那么意思是在其他版本的手机能显示?另外我这边用过CoordinatorLayout和AppBarLayout在4.4是生效的,如果只是在某几款机型不可用,可能就是适配的问题