5

CoordinatorLayout と LinearLayout を下部に持つ RelativeLayout を作成しようとしていますが、解決できない奇妙な動作が見つかりました。これが私のレイアウトです

    <?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"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.design.widget.CoordinatorLayout
        android:id="@+id/content"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/sender"
        android:background="@android:color/white"
        android:fitsSystemWindows="true">

        <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            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="?actionBarSize"
                android:background="?colorPrimary"
                app:layout_scrollFlags="scroll|enterAlways" />

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

        <android.support.v7.widget.RecyclerView
            android:id="@+id/messages_list"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:layout_behavior="@string/appbar_scrolling_view_behavior" />

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

    <LinearLayout
        android:id="@+id/sender"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignParentBottom="true"
        android:gravity="center_vertical"
        android:background="@android:color/white">

        <EditText
            android:id="@+id/inputText"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:inputType="text" />

        <Button
            android:fontFamily="sans-serif"
            style="?android:attr/borderlessButtonStyle"
            android:textAppearance="?android:textAppearanceButton"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="@string/send"
            android:textColor="?colorPrimary"
            android:id="@+id/send"/>

    </LinearLayout>

</RelativeLayout>

アダプターでデータを変更した後、最後の要素にスクロールしようとしました (たとえば、 recyclerView.smoothScrollToPosition(size); によって)。表示されるのは最後のビューの一部です (フルサイズではありません)。recycleview が CoordinatorLayout にネストされていない場合 - すべてが期待どおりに機能します - フルサイズの最後の要素ビューが表示されます。レイアウトを変更してすべて正しく動作させるにはどうすればよいですか?

4

4 に答える 4

0

RecyclerView が画面に完全に表示されていないため、最後の要素が切り取られています。展開された AppBar によって押し下げられています。手動でスクロールすると、最後の要素に到達すると AppBar が縮小することに注意してください。

私の場合に最も効果的だったのは、スクロールする前に AppBar を単純に折りたたむことでした。

AppBarLayout appBarLayout = (AppBarLayout) getActivity().findViewById(R.id.appbar);
appBarLayout.setExpanded(false, false);
recyclerView.smoothScrollToPosition(position);

必要な場合にのみ折りたたむことで、このソリューションを改善できると思います。

AppBar を折りたたむことが望ましくない場合は、展開された AppBar と同じ高さの下部パディングを追加できます。ただし、他の不具合もあります (たとえば、RecyclerView に既にあるが、画面のすぐ外側の位置にスクロールする場合)。

于 2016-03-24T23:28:28.363 に答える
0

この方法を試してください:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_marginBottom="16dp">

主なポイントは、アクティビティに android:layout_marginBottom を追加するために使用することです

于 2016-01-30T22:52:41.603 に答える