0

我有以下布局

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:animateLayoutChanges="true">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </android.support.design.widget.AppBarLayout>

    <ScrollView
        android:id="@+id/scroll_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fillViewport="true">

        <!-- Content -->

    </ScrollView>

    <include layout="@layout/fixed_layout_when_keyboard_not_visible" />

</RelativeLayout>

在 AndroidManifest 中,我android:windowSoftInputMode设置adjustResize了在键盘可见时不会“挤压”内容并始终保持工具栏固定的设置,即使在我滚动时也是如此。但是,我在底部有另一个视图,ScrollView我也想修复它,但同时在键盘弹出时不阻止任何内容 - 现在它与键盘一起移动,如下属性layout_gravity="bottom“。

我可以在键盘显示/隐藏时切换该布局的可见性,但这似乎不是最优雅的解决方案。你有什么建议?非常感谢任何帮助:)

4

2 回答 2

0

您应该ScrollView通过添加来告诉不要注册为滚动容器来解决问题android:isScrollContainer="false"。您的新ScrollView产品应如下所示:

<ScrollView
     android:id="@+id/scroll_view"
     android:layout_width="match_parent"
     android:layout_height="match_parent"
     android:fillViewport="true"
     android:isScrollContainer="false">

        <!-- Content -->

</ScrollView>
于 2016-11-29T15:24:45.180 回答
0

试试下面的代码

  <?xml version="1.0" encoding="utf-8"?>
    <LinearLayout
        xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        xmlns:tools="http://schemas.android.com/tools"
        android:layout_width="match_parent"
     android:orientation="vertical"
        android:layout_height="match_parent"
        android:animateLayoutChanges="true">

        <android.support.design.widget.AppBarLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <android.support.v7.widget.Toolbar
                android:id="@+id/toolbar"
                android:layout_width="match_parent"
                android:layout_height="wrap_content" />

        </android.support.design.widget.AppBarLayout>

        <ScrollView
            android:id="@+id/scroll_view"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            android:fillViewport="true">

            <!-- Content -->

        </ScrollView>


    </RelativeLayout>
于 2016-11-29T15:39:55.660 回答