希望按钮在淡出时不可点击,反之亦然



我有一个带有两个按钮的表格行,在 WebView 三秒钟未被触摸后,我使用动画淡出整个表格行。触摸 Web 视图后,表行将淡入。但是,我注意到虽然表格行淡出(并且按钮不可见),但按钮仍然可以单击。我尝试在淡出动画之后立即将表行可见性设置为 View.GONE,然后在淡入动画之前将可见性设置为 View.VISIBLE,但无济于事;当我将其设置为 View.VISIBLE 时,它似乎忽略了它,因为一旦表格行消失,它就不会在屏幕触摸时重新出现;

TableRow tr;
Animation fade_in = new AlphaAnimation(0.0f, 1.0f);
Animation fade_out = new AlphaAnimation(1.0f, 0.0f);
WebView loss_source_dest;
public void onCreate(Bundle savedInstanceState) 
{
    super.onCreate(savedInstanceState);
    setContentView(R.layout.loss);
    getStrings();
    findIDs();

    fade_in.setDuration(750);
    fade_out.setDuration(750);
    fade_out.setStartOffset(3000);
    initial_fade.setDuration(750);
    fade_in.setFillAfter(true);
    fade_out.setFillAfter(true);
    tr.startAnimation(fade_out);
    loss_source_dest.setOnTouchListener(new View.OnTouchListener() 
    {
        public boolean onTouch(View v, MotionEvent event) 
        {
            tr.setVisibility(v.VISIBLE);
            tr.startAnimation(fade_in);
            tr.startAnimation(fade_out);
            tr.setVisibility(v.GONE);
            return false;
        }
    });

好的,这里似乎有几个问题。

1)要修复调用setVisibility(View.GONE)后仍然可点击的按钮,这里有一个解决方案...android View with View.GONE 仍然会收到 onTouch 和 onClick。(我试图将其添加到您的解决方案中)。

2) startAnimation 方法调用是非阻塞的,因此最好的解决方案是使用 AnimationListener 来检测哪个动画已完成,然后将按钮的可见性设置为 View.GONE。

TableRow tr;
Animation fade_in = new AlphaAnimation(0.0f, 1.0f);
Animation fade_out = new AlphaAnimation(1.0f, 0.0f);
WebView loss_source_dest;
public void onCreate(Bundle savedInstanceState) 
{
super.onCreate(savedInstanceState);
setContentView(R.layout.loss);
getStrings();
findIDs();
fade_in.setDuration(750);
fade_out.setDuration(750);
fade_out.setStartOffset(3000);
fade_out.setAnimationListener(new AnimationListener(){
      public void onAnimationStart(Animation anim)
      {
      }
      public void onAnimationRepeat(Animation anim)
      {
      }
      public void onAnimationEnd(Animation anim)
      {
          tr.setVisibility(View.GONE);
      }
});
initial_fade.setDuration(750);
// fade_in.setFillAfter(true); (Removed)
// fade_out.setFillAfter(true); (Removed)
tr.startAnimation(fade_out);
loss_source_dest.setOnTouchListener(new View.OnTouchListener() 
{
    public boolean onTouch(View v, MotionEvent event) 
    {
        tr.setVisibility(v.VISIBLE);
        tr.startAnimation(fade_in);
        tr.startAnimation(fade_out);
        return false;
    }
});

我希望我帮助了:)

带有wait()方法的线程应该做你想做的事。您不仅需要为动画设置偏移量,还需要为 View.GONE 设置偏移量。

这也有助于:

myButton.setEnabled(false);

您只需要在需要时启用/禁用按钮。

相关内容

  • 没有找到相关文章

最新更新