RecyclerViewとツールバーで簡単なCoordinatorLayoutを作成したいのですが、標準的な解決策との違いは、ツールバーが下部にある必要があり、RecyclerViewが下部にスクロールすると消えるはずです。CoordinatorLayoutの下部にあるツールバー
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
android:id="@+id/main_content"
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar_bottom"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<android.support.v7.widget.RecyclerView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:id="@+id/recycler_view"/>
</android.support.design.widget.CoordinatorLayout>
もちろんツールバーではなく、下部の一番上にある:
は、だから私はシンプルなレイアウトを作成しました。どうすれば修正できますか?
で試してみてくださいは、残念ながらそれは私がClassCastExceptionが取得原因、XMLにおける第二のものはRecyclerViewする必要があり、あなたのソリューションを持つことは不可能です。 – ThirdMartian
ああ、CoordinatorLayoutがFrameLayoutのサブクラスだと覚えていれば、xmlブロック内の要素を、私が推測する副作用なしに入れ替えることができます。私の編集も見てください! – fiipi
ああ、私は間違っていた、それは一時的なエラーだった今、ツールバーは一番下にあり、私はスクロールでhide/showの解決策を見つけようとしている。私は下部のナビゲーションバーを使用したくないツールバー上のアイテムの原因は、コンテナ内の新しいフラグメントを置き換える代わりに新しいアクティビティを開くべきです。私は、下のナビゲーションバーのために既に作成されたlibsが私の解決には大きすぎますが、多分私はそれらを使用しなければならないことを意味します。 – ThirdMartian