解决FrameLayout上的Layout可以点击 下层的方法:

给当前的 View设定Touch事件;
 例:
 currentLayout.setOnTouchListener(new OnTouchListener(){

       @Override
       public boolean onTouch(View v, MotionEvent event) {
        // TODO Auto-generated method stub
        return true;
       }
       
      });

你可能感兴趣的:(解决FrameLayout上的Layout可以点击 下层的方法:)