设置child.setvisibility时,Android Home Screen就像效果闪烁问题一样(View.Visible)

时间:2010-08-23 04:48:28

标签: android flicker visible viewflipper homescreen

我已经制作了一个示例应用程序来翻转viewflipper中的不同布局。

XML基本上是(伪代码)

<ViewFlipper>
<LinearLayout><TextView text:"this is the first page" /></LinearLayout>
<LinearLayout><TextView text:"this is the second page" /></LinearLayout>
<LinearLayout><TextView text:"this is the third page" /></LinearLayout>
</ViewFlipper>

在Java代码中,

public boolean onTouchEvent(MotionEvent event)
case MotionEvent.ACTION_DOWN {
   oldTouchValue = event.getX()
} case MotionEvent.ACTION_UP {
   //depending on Direction, do viewFlipper.showPrevious or viewFlipper.showNext
   //after setting appropriate animations with appropriate start/end locations
} case MotionEvent.ACTION_MOVE {
   //Depending on the direction
   nextScreen.setVisibility(View.Visible)
   nextScreen.layout(l, t, r, b) // l computed appropriately
   CurrentScreen.layout(l2, t2, r2, b2) // l2 computed appropriately
}

在屏幕上拖动时,上面的伪代码可以很好地移动viewflipper中的linearlayout(就像主屏幕一样)。

问题是当我执行nextScreen.setVisibility(View.VISIBLE)时。当下一个屏幕设置为可见时,它会在移动到适当位置之前在屏幕上闪烁。 (我猜它在0位置可见。)

有没有办法加载下一个屏幕而不会让它在屏幕上闪烁?我想让它从屏幕上加载(可见),这样它就不会闪烁。

非常感谢您的时间和帮助!

1 个答案:

答案 0 :(得分:3)

1。我有完全相同的问题。我尝试将layout()和setVisible()调用切换为无效。

更新: 问题是设置nextScreen视图的可见性时的正确顺序。如果在调用layout()之前将可见性设置为VISIBLE ,则会在您注意到的位置0处获得闪烁。但是如果你先调用layout(),它会被忽略,因为可见性是GONE。我做了两件事来解决这个问题:

  1. 在第一次layout()调用之前将可见性设置为INVISIBLE。这与GONE的不同之处在于执行了layout() - 你只是看不到它。
  2. 异步设置可见性为VISIBLE,因此首先处理layout()和相关消息
  3. 在代码中:

    case MotionEvent.ACTION_DOWN:
        nextScreen.setVisibility(View.INVISIBLE); //from View.GONE
    
    case MotionEvent.ACTION_MOVE:
        nextScreen.layout(l, t, r, b);
        if (nextScreen.getVisibility() != View.VISIBLE) {
        //the view is not visible, so send a message to make it so
        mHandler.sendMessage(Message.obtain(mHandler, 0));
    }
    
    private class ViewHandler extends Handler {
    
        @Override
        public void handleMessage(Message msg) {
            nextScreen.setVisibility(View.VISIBLE);
        }
    }
    

    欢迎更优雅/更轻松的解决方案!