これらの新しいレイアウトの例はインターネット上にあまりありませんが、出回っているいくつかの例はすべて同じ基本的なアプローチに基づいています. アプリに適切なツールバーがなくても、新しいマテリアル デザイン レイアウトの優れた機能を使用したい場合はどうですか?
私が試していることの 1 つは、視差スクロール効果を持つ CoordinatorLayout 内で MapView と RecyclerView を使用することです。うまく機能しますが、問題があります。アダプターの数が少ないと、RecyclerView が画面の下部に残りません。問題をよりよく説明するためのいくつかの画像を次に示します。
初期画面:
RecyclerView は MapView をスクロールし、下に空白を残します。
RecyclerView を一番下に保つ方法はありますか?
私のxmlは次のようになります:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.design.widget.AppBarLayout
android:id="@+id/appBarLayout"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.design.widget.CollapsingToolbarLayout
android:id="@+id/collapsing_toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_scrollFlags="scroll|enterAlways">
<com.google.android.gms.maps.MapView
android:id="@+id/tts_main_map"
android:layout_width="match_parent"
android:layout_height="250dp"
app:layout_collapseMode="parallax" />
</android.support.design.widget.CollapsingToolbarLayout>
</android.support.design.widget.AppBarLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="vertical"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
/>
</android.support.design.widget.CoordinatorLayout>