0
これはXMLなぜRecyclerViewはBottomNavigationViewの下にあるのですか?
私はRecyclerView怒鳴るBottomNavigationViewを置くことができます<android.support.design.widget.BottomNavigationView
android:id="@+id/bottom_navigation"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_gravity="bottom"
app:itemBackground="@color/colorPrimary"
app:menu="@menu/menus" />
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerview1"
android:layout_width="fill_parent"
android:layout_height="450dp" />
ための私のコードですか?
あなたの活動のレイアウトとしてこれを使用するには、現在、XMLスニペットに含まれていない、あなたのレイアウトマネージャに依存します。いずれにしても、XMLで宣言されている順序を変更するか、標高を変更するのと同じくらい簡単です。 – Submersed