0

リスト ビューの上に配置されたボタンに小さなアニメーションを実装しました。基本的にquick action buttonは、リストを追加/更新するようなものです。

私がやりたいことは、ユーザーがボタンをクリックしてボタンを表示すると、ボタンをアニメーション化することpopupです。が閉じpopupられると、ボタンは初期状態に戻ります。

次のコードを作成しました。

    final PopupWindow popup = new PopupWindow(getContext());

    // Attach layout
    LayoutInflater layoutInflater = (LayoutInflater) getContext().getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    View layout = layoutInflater.inflate(R.layout.core_popup_quickactions, new LinearLayout(getContext()));

    // Creating the PopupWindow
    popup.setContentView(layout);
    popup.setHeight(WindowManager.LayoutParams.WRAP_CONTENT);
    popup.setWidth(WindowManager.LayoutParams.WRAP_CONTENT);
    popup.setOutsideTouchable(true);
    popup.setFocusable(true);
    popup.setBackgroundDrawable(new BitmapDrawable());
    popup.setOnDismissListener(new OnDismissListener() {
        @Override
        public void onDismiss()
        {
            // Rotate back
            RotateAnimation animation = new RotateAnimation(-45.0f, 0.0f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
            animation.setDuration(300);
            animation.setRepeatCount(0);
            animation.setFillAfter(true);
            animation.setFillBefore(true);
            animation.setFillEnabled(true);
            startAnimation(animation);
            animation.setAnimationListener(new AnimationListener() {
                @Override
                public void onAnimationStart(Animation arg0)
                {
                    QuickActionButton.this.setClickable(false);
                }

                @Override
                public void onAnimationEnd(Animation arg0)
                {
                    QuickActionButton.this.setClickable(true);
                }

                @Override
                public void onAnimationRepeat(Animation arg0)
                {
                }
            });
        }
    });
    popup.setTouchable(false);
    popup.showAsDropDown(this, 0, -dpToPx(350));

    // Rotate the icon
    RotateAnimation animation = new RotateAnimation(0.0f, -45.0f, Animation.RELATIVE_TO_SELF, 0.5f, Animation.RELATIVE_TO_SELF, 0.5f);
    animation.setDuration(300);
    animation.setRepeatCount(0);
    animation.setFillAfter(true);
    animation.setFillBefore(true);
    animation.setFillEnabled(true);
    startAnimation(animation);
    animation.setAnimationListener(new AnimationListener() {
        @Override
        public void onAnimationStart(Animation arg0)
        {
            popup.setTouchable(false);
        }

        @Override
        public void onAnimationEnd(Animation arg0)
        {
            popup.setTouchable(true);
        }

        @Override
        public void onAnimationRepeat(Animation arg0)
        {
        }
    });

現在の問題は、ビューをスクロールして を押すとquick action button、アニメーションが開始され、数ミリ秒後にリセットされることです。

それは正常な動作Popupですか?

4

1 に答える 1