How to disable behind view click event Framelayout

前端 未结 9 1342
遥遥无期
遥遥无期 2020-12-04 20:53

Here i have one view pager activity which has one imageview and 2 overlay bars. there overlay bars i made using android xml file layout itself.

Here my requirement i

9条回答
  •  囚心锁ツ
    2020-12-04 21:24

    
    
    
        
    
            

    and

    public void click(View v) {
        Toast.makeText(this, "((RelativeLayout)v).toString()", Toast.LENGTH_SHORT).show();
    }
    
    public void buttonclick(View v) {
        Toast.makeText(this, "Button", Toast.LENGTH_SHORT).show();
    }
    

提交回复
热议问题