为什么我的 appbottombar 占用了我的整个布局高度
Why my appbottombar is taking my whole layout height
我在我的 xml 布局中使用此代码 我在下面添加了我的布局和一些图片
......
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/notes_container_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
.......
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/add_note_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/medium_margin"
android:backgroundTint="@color/colorPrimary"
app:layout_anchor="@id/bottomAppBar"
app:srcCompat="@drawable/ic_add_black_24dp"
tools:ignore="VectorDrawableCompat" />
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:backgroundTint="@color/colorPrimary"
app:hideOnScroll="false"
app:menu="@menu/appbar_menu"
app:navigationIcon="@drawable/ic_menu" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</layout>
BottomAppbar 的高度占据了我的整个布局,如图所示
它应该看起来像这张图片
问题不在 BottomAppBar
的维度。
检查您的父布局尺寸或位置:
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/notes_container_layout"
android:layout_height="wrap_content"
BottomAppBar
的高度正确,但 CoordinatorLayout
使用 android:layout_height="wrap_content"
。
更改 CoordinatorLayout
的高度或在 CoordinatorLayout
.
中使用 android:layout_gravity="bottom"
我在我的 xml 布局中使用此代码 我在下面添加了我的布局和一些图片
......
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/notes_container_layout"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true">
.......
<com.google.android.material.floatingactionbutton.FloatingActionButton
android:id="@+id/add_note_fab"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_margin="@dimen/medium_margin"
android:backgroundTint="@color/colorPrimary"
app:layout_anchor="@id/bottomAppBar"
app:srcCompat="@drawable/ic_add_black_24dp"
tools:ignore="VectorDrawableCompat" />
<com.google.android.material.bottomappbar.BottomAppBar
android:id="@+id/bottomAppBar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="bottom"
android:backgroundTint="@color/colorPrimary"
app:hideOnScroll="false"
app:menu="@menu/appbar_menu"
app:navigationIcon="@drawable/ic_menu" />
</androidx.coordinatorlayout.widget.CoordinatorLayout>
</layout>
BottomAppbar 的高度占据了我的整个布局,如图所示
它应该看起来像这张图片
问题不在 BottomAppBar
的维度。
检查您的父布局尺寸或位置:
<androidx.coordinatorlayout.widget.CoordinatorLayout
android:id="@+id/notes_container_layout"
android:layout_height="wrap_content"
BottomAppBar
的高度正确,但 CoordinatorLayout
使用 android:layout_height="wrap_content"
。
更改 CoordinatorLayout
的高度或在 CoordinatorLayout
.
android:layout_gravity="bottom"