在linearlayout中以两个片段淡出不按预期工作

时间:2018-01-15 14:59:53

标签: android android-layout android-fragments android-animation

我正在尝试使用一些动画切换2个片段。如果我的布局只有一个片段,那么一切都有效,但是当我一个接一个地添加两个片段时,这个转换不起作用。

我的活动布局:

<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.NestedScrollView
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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="myapplication.ScrollingActivity"
tools:showIn="@layout/activity_scrolling">

<LinearLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="vertical">

    <FrameLayout
        android:id="@+id/theMap"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </FrameLayout>

    <FrameLayout
        android:id="@+id/MainFrame"
        android:layout_width="match_parent"
        android:layout_height="match_parent">
    </FrameLayout>
</LinearLayout>

</android.support.v4.widget.NestedScrollView>

现在我想在MainFrame容器中更改片段,但结果是片段的淡出是错误的。第一个片段的内容比第二个片段的内容长。转换完成后,将第一个片段剪切为第二个片段的大小,然后完成淡入淡出效果。 我想要实现的是第一个片段在其全高度淡出,然后使用动画在其高度添加第二个片段。

请注意,如果我没有LinearLayout并且只有MainFrame,那么淡出/淡入是正确的,但是LinearLayout(或约束布局)只会破坏它。

这是转换代码:

private void performTransition()
{
    if (isDestroyed())
    {
        return;
    }
    Fragment previousFragment = getSupportFragmentManager().findFragmentById(R.id.MainFrame);
    Fragment nextFragment = BlankFragment2.newInstance();

    FragmentTransaction fragmentTransaction = getSupportFragmentManager().beginTransaction();

    long FADE_DEFAULT_TIME = 2000;

    Fade exitFade = new Fade();
    exitFade.setDuration(FADE_DEFAULT_TIME);
    previousFragment.setExitTransition(exitFade);

    Fade enterFade = new Fade();
    enterFade.setStartDelay(FADE_DEFAULT_TIME);
    enterFade.setDuration(FADE_DEFAULT_TIME);
    nextFragment.setEnterTransition(enterFade);

    fragmentTransaction.replace( R.id.MainFrame, nextFragment);
    fragmentTransaction.commitAllowingStateLoss();
}

要重新创建此问题,只需创建一个新的android studio项目,选择滚动活动,然后添加3个空白片段,将长内容设置为一个片段的textView并观察其行为。

如果在linearLayout中有碎片,可以做些什么来适当淡出/淡出动画?

1 个答案:

答案 0 :(得分:0)

解决方法是设置 android:fillViewport =&#34; true&#34;到ScrollView ,因为似乎滚动视图首先调整自身大小并在屏幕的其余部分剪切动画。