如何将第一张图片中的地图片段放到卡片视图开始的位置,类似于Strava在第二张图片中的处理方式。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_height="match_parent"
android:layout_width="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="470dp"
tools:context="com.example.donal.navdrawer.Activities.MapsActivity"/>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/maps_toolbar"
android:layout_height="?attr/actionBarSize"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:background="?attr/colorPrimaryDark"
android:layout_width="match_parent"
/>
<android.support.v7.widget.CardView
android:id="@+id/card_view"
android:layout_gravity="bottom"
android:layout_width="match_parent"
android:layout_height="100dp"
android:elevation="4dp">
</android.support.v7.widget.CardView>
</FrameLayout>
答案 0 :(得分:0)
如果定义卡片视图的layout_height,则可以将片段高度设置为0dp,将权重设置为1.这将确保片段将占用剩余的所有可用空间。