我遇到問題。當我將物品放在頂部時鎖定和解鎖手機後,視圖向下移動。當我將項目聚焦在底部時,視圖移動到開始位置。當我開始新的活動並回到家時,一切都很好。黑色空間和向下移動視圖
佈局代碼:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="@drawable/settings_bg" >
<TableLayout
android:id="@+id/base_tiles_table"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight="1"
android:focusable="true"
android:focusableInTouchMode="true">
</TableLayout>
<include layout="@layout/bottom_navigation" />
android:layout_height =「0dp」將其更改爲android:layout_height =「match_parent」。如果您無法看到底部導航,請嘗試使用框架佈局。或者你也可以使用重量導航面板。 – kumar