0

私は問題があります。アイテムを上にフォーカスしたときに電話をロックおよびロック解除した後、ビューが下に移動します。アイテムを下にフォーカスすると、ビューが開始位置に移動します。私が新しい活動に移って家に戻るとき、すべては順調です。

ここに画像の説明を入力してください

レイアウトコード:

<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" />

4

1 に答える 1

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>

このテーブル レイアウトが下部のナビゲーションと重なっている場合は、次のようにします。

<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" />

フレームレイアウトを使用すると、ビュー/レイアウトをオーバーラップさせることができます。

于 2012-12-18T10:10:56.250 に答える