소스 검색

Hardcode bottom nav height (fixes #5698)

This shouldn't be an issue since the spec defines the height to always be 56dp anyway.
arkon 3 년 전
부모
커밋
ebb15bf96c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      app/src/main/res/layout/main_activity.xml

+ 1 - 1
app/src/main/res/layout/main_activity.xml

@@ -78,7 +78,7 @@
     <com.google.android.material.bottomnavigation.BottomNavigationView
         android:id="@+id/bottom_nav"
         android:layout_width="match_parent"
-        android:layout_height="wrap_content"
+        android:layout_height="56dp"
         android:layout_gravity="bottom"
         android:clickable="true"
         app:layout_insetEdge="bottom"