小编Aug*_*ent的帖子

CollapsingToolbarLayout标题作为共享元素转换

TextView在我的活动中有A.我如何TextView从活动A和CollapsingToolbarLayout.setTitle()活动B 的标题进行共享元素转换?

有没有办法idCollapsingToolbarLayout源代码中获取标题视图?

感谢帮助!

android android-transitions android-toolbar shared-element-transition android-collapsingtoolbarlayout

29
推荐指数
1
解决办法
3039
查看次数

CoordinatorLayout中的RecyclerView在方向更改后丢失其顶部填充

我正在使用Support Design Library rev.23.0.1(以及22.2.1).问题是在活动方向改变之后,如果已经滚动了RecyclerView(放置在片段中),它会丢失其顶部填充,这可能等于StatusBar Height + AppBar Height(如图所示).在此输入图像描述

有关详情,请参阅此示例视频

这是我的活动布局

<android.support.design.widget.CoordinatorLayout
    android:id="@+id/coordinatorLayout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true">

    <android.support.design.widget.AppBarLayout
        android:id="@+id/discount_activity_app_bar_layout"
        android:layout_width="match_parent"
        android:layout_height="256dp"
        app:layout_behavior="com.moskart.mosfake.widget.AppBarLayoutBehavior"
        android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
        android:fitsSystemWindows="true"
        >


        <android.support.design.widget.CollapsingToolbarLayout
            android:id="@+id/collapsingToolbarLayout"
            android:layout_width="match_parent"
            android:layout_height="match_parent"
            app:contentScrim="?attr/colorPrimary"
            app:expandedTitleMarginStart="@dimen/expanded_toolbar_title_margin_start"
            app:expandedTitleMarginBottom="96dp"
            app:expandedTitleTextAppearance="@style/TextAppearance.Design.CollapsingToolbar.Expanded"
            app:layout_scrollFlags="scroll|exitUntilCollapsed"
            >

            <ImageView
                android:layout_width="match_parent"
                android:layout_height="match_parent"
                android:id="@+id/hero_image"
                app:layout_collapseMode="parallax"
                app:layout_collapseParallaxMultiplier="0.7"
                android:fitsSystemWindows="true"
                />

            <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/ThemeOverlay.AppCompat.Light"
                app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">

            </android.support.v7.widget.Toolbar>

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


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

    <FrameLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        app:behavior_overlapTop="64dp"
        android:fitsSystemWindows="true" >

        <fragment xmlns:android="http://schemas.android.com/apk/res/android"
                  xmlns:tools="http://schemas.android.com/tools"
                  android:id="@+id/fragment"
                  android:name="com.moskart.mosfake.fragment.DiscountFeedFragment"
                  tools:layout="@layout/fragment_discount_feed"
                  android:layout_width="match_parent"
                  android:layout_height="match_parent" />
    </FrameLayout>

</android.support.design.widget.CoordinatorLayout>
Run Code Online (Sandbox Code Playgroud)

一个简单的片段包含RecyclerView

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
tools:context="com.moskart.mosfake.fragment.DiscountFeedFragment"
> …
Run Code Online (Sandbox Code Playgroud)

android android-recyclerview android-coordinatorlayout android-support-design

7
推荐指数
0
解决办法
1119
查看次数