1

我为我的搜索视图定义了一个圆形显示动画,它可以工作。但是当重新添加片段时(通过 ft.add(R.id.main_content, frag),显示动画不会发生。键入搜索查询时,字母几乎不可见,并且不会出现自动完成的列表视图。但如果在键入(不可见)我点击搜索,确实执行了免费搜索。调试显示代码已执行并且视图已正确测量。如果我将代码更改为 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();
}
4

0 回答 0