我有一个带有cardViews和其他元素的linearView。 具有所有元素的视图是可缩放的。 我试图通过在RelativeView中包装所有内容并在工具栏的布局上使用alignParentBottom来在屏幕底部添加一个固定的工具栏,但工具栏被添加到可扩展页面的底部(您需要一直滚动)看到它。
这是我的代码:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/fragment_poi_detail_main_view"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">
<include layout="@layout/toolbar_image" />
<View
android:id="@+id/fragment_poi_detail_line"
android:layout_width="match_parent"
android:layout_height="@dimen/toolbar_shadow_height"
android:background="@drawable/shape_shadow"/>
<include
layout="@layout/fragment_poi_detail_header"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/fragment_poi_detail_card_margin_vertical_first"
android:layout_marginBottom="@dimen/fragment_poi_detail_card_margin_vertical"
android:layout_marginLeft="@dimen/fragment_poi_detail_card_margin_horizontal_first"
android:layout_marginRight="@dimen/fragment_poi_detail_card_margin_horizontal_last"/>
<include
layout="@layout/fragment_poi_detail_content_info"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/fragment_poi_detail_card_margin_vertical_first"
android:layout_marginBottom="@dimen/fragment_poi_detail_card_margin_vertical"
android:layout_marginLeft="@dimen/fragment_poi_detail_card_margin_horizontal_first"
android:layout_marginRight="@dimen/fragment_poi_detail_card_margin_horizontal_last"/>
<include
layout="@layout/fragment_poi_detail_content_banner"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/fragment_poi_detail_card_margin_vertical"
android:layout_marginBottom="@dimen/fragment_poi_detail_card_margin_vertical"
android:layout_marginLeft="@dimen/fragment_poi_detail_card_margin_horizontal_first"
android:layout_marginRight="@dimen/fragment_poi_detail_card_margin_horizontal_last" />
<include
layout="@layout/fragment_poi_detail_content_map"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/fragment_poi_detail_card_margin_vertical"
android:layout_marginBottom="@dimen/fragment_poi_detail_card_margin_vertical"
android:layout_marginLeft="@dimen/fragment_poi_detail_card_margin_horizontal_first"
android:layout_marginRight="@dimen/fragment_poi_detail_card_margin_horizontal_last" />
<include
layout="@layout/fragment_poi_detail_content_description"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginTop="@dimen/fragment_poi_detail_card_margin_vertical"
android:layout_marginBottom="@dimen/fragment_poi_detail_card_margin_vertical_last"
android:layout_marginLeft="@dimen/fragment_poi_detail_card_margin_horizontal_first"
android:layout_marginRight="@dimen/fragment_poi_detail_card_margin_horizontal_last" />
</LinearLayout>
<include layout="@layout/fragment_poi_detail_bottom_action_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
>
</include>
</RelativeLayout>
我做错了什么? 谢谢你的帮助:)
这是滚动到底部的视图,以及视图底部的条形图。