我在 AppBarLayout 中使用 android:animateLayoutChanges =" true" 对我的 TabLayout 进行动画制作。但是当我设置 TabLayout.setVisibility(View.GONE)时,我的片段的容器会立即上升到 ActionBar 几毫秒。然后它返回到 TabLayout 的末尾,并将其上升到 ActionBar 。我在下面的gif上解释了这个。
按钮理论和练习由于某种原因隐藏在 TabLayout 之后但是当隐藏TabLayout动画时,启动保持我的视图的FrameContainer坚持TabLayout的底部。
我录制了一段视频来说明这种行为。 Dropbox视频播放器跳过一些帧和动画似乎很好。这就是为什么,要注意这个错误,你可以在电脑上加载视频,并以高质量观看5秒和11秒。 Video
我的LayoutXML:
<android.support.design.widget.CoordinatorLayout
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:orientation="vertical">
<SurfaceView
android:layout_width="0px"
android:layout_height="0px"/>
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:animateLayoutChanges="true">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:minHeight="?attr/actionBarSize"
app:layout_scrollFlags="scroll|enterAlways"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"/>
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
android:visibility="gone"
app:tabGravity="fill"
app:tabIndicatorColor="@android:color/white"
app:tabMode="fixed"/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.widget.DrawerLayout
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior">
<!--
This FrameLayout holds my fragments.
-->
<FrameLayout
android:id="@+id/content_frame"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@color/outer_background">
<ProgressBar
android:id="@+id/main_load_progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:indeterminate="true"/>
</FrameLayout>
<include
android:id="@+id/left_drawer_full"
layout="@layout/navigation_drawer"
android:layout_width="240dp"
android:layout_height="match_parent"
android:layout_gravity="start"/>
</android.support.v4.widget.DrawerLayout>
</android.support.design.widget.CoordinatorLayout>
此外,我正在使用 23.2.1支持库。
如何修复此眨眼和跳跃?
答案 0 :(得分:7)
尝试使用
将app:layout_behavior="@string/appbar_scrolling_view_behavior
添加到您的视图中
LayoutTransition.CHANGING
这样就是你的DrawerLayout。然后在其上启用转换类型ViewGroup layout = (ViewGroup) findViewById(R.id. drawer_layout);
LayoutTransition layoutTransition = layout.getLayoutTransition();
layoutTransition.enableTransitionType(LayoutTransition.CHANGING);
,如下所示:
data
答案 1 :(得分:0)
我整天都在浪费时间来调查这个问题。 我找到了一个可能解决这个问题的方法。 现在我通过此代码更改可见性
mTabLayout.postDelayed(new Runnable() {
@Override
public void run() {
switch (newMode) {
case MODE_CONTENTS:
mTabLayout.setVisibility(mContents.isTheoryAvailable() ? View.VISIBLE : View.GONE);
break;
default:
findViewById(R.id.content_frame).setVisibility(View.INVISIBLE);
mTabLayout.setVisibility(View.GONE);
findViewById(R.id.content_frame).setVisibility(View.VISIBLE);
}
}
}, 200);
效果很好,现在观点不会闪烁。但是在旧的机器人上,虫子仍然存在。