在滚动视图中使用片段无法滚动
Using fragments inside scrollview unable to scroll
我有一个卡片视图,它有一个地图片段,后跟一个 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>
为您的地图片段指定 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 内的按钮。在纵向视图中,片段以适当的高度显示但不滚动,因此按钮甚至不出现。在横向视图中,它确实滚动但片段显示为细条。这是代码。我什至试图将片段保留在卡片视图之外,但即使那样也无济于事,结果相同。
图片: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>
为您的地图片段指定 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 中。因此在横向视图中,您的列表将占据所有屏幕,因此您将无法滚动,因为您没有放置列表在滚动视图中