循环显示动画在重新添加片段后停止工作

时间:2017-10-02 12:58:10

标签: android animation circularreveal

我为我的searchview定义了一个曲面透视动画,但它确实有效。但是当重新添加frgament时(通过ft.add(R.id.main_content,frag),显示动画不会发生。键入搜索查询时,字母是不可见的,并且不会出现auocomplete的列表视图。但是如果之后打字(看不见)我点击搜索,确实执行了免费搜索。调试显示代码被执行并且视图被正确测量。 如果我将代码更改为ft.replace()而不是添加,那么没有错误。 请注意我用每个片段更改了工具栏,因此重新添加的片段工具栏(未显示显示的工具栏)理论上应该是所有UI元素的新出现。

 <FrameLayout
    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="wrap_content"
    android:background="@drawable/toolbar_gradient"
    android:minHeight="?attr/actionBarSize"
    android:paddingTop="@dimen/toolbar_padding_top"

   />

    <android.support.v7.widget.Toolbar
        android:id="@+id/searchtoolbar"
        xmlns:app="http://schemas.android.com/apk/res-auto"
        app:collapseIcon="@drawable/ic_grey_arrow_back"
        app:titleTextColor="@color/app_theme_text"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/background_accent"
        android:minHeight="?attr/actionBarSize"
        android:layout_marginTop="@dimen/toolbar_padding_top"
        android:visibility="invisible"
        android:clickable="true"
        />

</FrameLayout>

public void circleReveal(int viewID, int posFromRight, final boolean isShow) {
    final View myView = findViewById(viewID);

    int width = myView.getWidth();

    if (posFromRight > 0)
        width -= (posFromRight * getResources().getDimensionPixelSize(R.dimen.abc_action_button_min_width_material)) -
                (getResources().getDimensionPixelSize(R.dimen.abc_action_button_min_width_material) / 2);

    int cx = width;
    int cy = myView.getHeight()/2;

    Animator anim;
    if (isShow)
        anim = ViewAnimationUtils.createCircularReveal(myView, cx, cy, 0, (float)width);
    else
        anim = ViewAnimationUtils.createCircularReveal(myView, cx, cy, (float) width, 0);

    anim.setDuration((long) 220);

    // make the view invisible when the animation is done
    anim.addListener(new AnimatorListenerAdapter() {
        @Override
        public void onAnimationEnd(Animator animation) {
            if (!isShow) {
                super.onAnimationEnd(animation);
                myView.setVisibility(View.GONE);
                getSupportActionBar().setTitle(actionBarTitle);
            }

        }
    });

    // make the view visible and start the animation
    if (isShow)
        myView.setVisibility(View.VISIBLE);

    // start the animation
    anim.start();
}

0 个答案:

没有答案