Need to disable expand on CollapsingToolbarLayout for certain fragments

前端 未结 14 1344
萌比男神i
萌比男神i 2020-11-28 08:55

I have a AppCompatActivity that controls replacing many fragments. Here is my layout for it.

activity_main.xml



        
14条回答
  •  青春惊慌失措
    2020-11-28 09:32

    Find the AppBarLayout id as like this.

    appBarLayout = (AppBarLayout) findViewById(R.id.appbar);
    

    Disable expand on CollapsingToolbarLayout for certain fragments

    appBarLayout.setExpanded(true,true);
    

    Enable expand on CollapsingToolbarLayout for certain fragments

    appBarLayout.setExpanded(false,true);
    

    Hope it will help you !!

提交回复
热议问题