How to bring view in front of everything?

后端 未结 16 2232
刺人心
刺人心 2020-11-30 01:31

I have activity and a lot of widgets on it, some of them have animations and because of the animations some of the widgets are moving (translating) one over another. For exa

16条回答
  •  盖世英雄少女心
    2020-11-30 01:52

    You can use BindingAdapter like this:

    @BindingAdapter("bringToFront")
    public static void bringToFront(View view, Boolean flag) {
        if (flag) {
            view.bringToFront();
        }
    }
    
    
      
    

提交回复
热议问题