2

私は私の中にこの構造を持っていますmain layout

<android.support.design.widget.CoordinatorLayout 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="wrap_content"
android:fitsSystemWindows="true"
tools:context="com.pingvalue.example.MainActivity">

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:fitsSystemWindows="true"
    android:theme="@style/AppTheme.AppBarOverlay">

    <android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/toolbar_layout"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|exitUntilCollapsed">

        <include
            android:id="@+id/linear_header"
            layout="@layout/product_detail_header" />

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            app:layout_collapseMode="pin"
            app:popupTheme="@style/AppTheme.PopupOverlay" />

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

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


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


<android.support.v4.view.ViewPager
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"/>


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

これは、内部のフラグメントで使用している私のレイアウトですViewPager

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical">

<android.support.v7.widget.RecyclerView
    android:id="@+id/recycler"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1" />

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal"
    android:padding="6dp">

    <EditText
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:drawableRight="@drawable/ic_insert_emoticon_black_24px"
        android:gravity="center_vertical"
        android:hint="@string/what_do_you_want_to_say"
        android:textSize="16sp" />

    <Button
        android:layout_width="40dp"
        android:layout_height="30dp"
        android:layout_marginLeft="6dp"
        android:background="@drawable/ic_send_selector"
        android:enabled="false" />

</LinearLayout>

</LinearLayout>

次の動作を実現したい。これは、AppBarLayout折りたたまれたときのスクリーンショットです。

ここに画像の説明を入力

ご覧のとおり、EditTextとのレイアウトButtonが表示されていますが、上にスクロールすると消えます。CoordinatorLayoutカスタム動作を試してみましたが、私のCoordinatorLayout. にも変更しようとしましmatch_parentwrap_contentが、 の下に空のスペースを入れましたLinearLayout

ここに画像の説明を入力

4

3 に答える 3

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.support.v7.widget.RecyclerView
        android:id="@+id/recycler"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1" />

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:orientation="horizontal"
        android:padding="6dp"
        android:layout_weight="0">

        <EditText
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:drawableRight="@drawable/ic_insert_emoticon_black_24px"
            android:gravity="center_vertical"
            android:hint="@string/what_do_you_want_to_say"
            android:textSize="16sp" />

        <Button
            android:layout_width="40dp"
            android:layout_height="30dp"
            android:layout_marginLeft="6dp"
            android:background="@drawable/ic_send_selector"
            android:enabled="false" />

    </LinearLayout>

</LinearLayout>
于 2016-09-25T09:33:51.213 に答える