我有一张卡片视图,其中有一张地图片段,后面跟着一张ScrollView内的按钮。在纵向视图中,片段以适当的高度显示但不滚动,因此按钮甚至不显示。在横向视图中,它会滚动,但片段显示为细条。这是代码。我甚至试图将片段保留在卡片视图之外,但即使这样也无济于事,具有相同的结果。
图片:http://postimg.org/gallery/w7chuz4u/
<LinearLayout 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:orientation="vertical">
<include
android:id="@+id/app_bar"
layout="@layout/app_bar" />
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.CardView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="8dp"
android:elevation="2dp"
app:cardUseCompatPadding="true">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:padding="8dp">
...
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="5dp"
android:padding="5dp" />
</LinearLayout>
</android.support.v7.widget.CardView>
<Button
android:id="@+id/book"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="5dp"
android:background="#ff0097a7"
android:text="Book Appointment" />
</LinearLayout>
</ScrollView>
app_bar.xml:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#009688"
>
</android.support.v7.widget.Toolbar>
答案 0 :(得分:0)
将特定的layout_height赋予地图片段,而不是像下面那样包装内容。
<fragment
android:id="@+id/map"
android:name="com.google.android.gms.maps.SupportMapFragment"
android:layout_width="match_parent"
android:layout_height="300dp"
android:layout_marginTop="5dp"
android:padding="5dp" />
但它可能在横向视图中不起作用,因为你只将片段和按钮放在scrollView中。所以在横向视图中,你的列表将占用所有屏幕,因为你没有将列表放在scrollview中,你将无法滚动