我有问题。当我将项目聚焦在顶部时锁定并解锁手机后,视图向下移动。当我将项目聚焦在底部时,视图移动到开始位置。当我搬到一个新的活动并回到家里一切都很好。
布局代码:
<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" />
答案 0 :(得分:0)
为什么在只有1个子元素时设置权重?试试这个:
<TableLayout
android:id="@+id/base_tiles_table"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:focusableInTouchMode="true">
</TableLayout>
如果此tablelayout与底部的导航重叠,请执行以下操作:
<FrameLayout 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="match_parent"
android:focusable="true"
android:focusableInTouchMode="true">
</TableLayout>
<include layout="@layout/bottom_navigation" />
使用framelayout时,可以使视图/布局重叠。