android - collapsing toolbar and fragment layout not working together

后端 未结 2 1886
南方客
南方客 2021-01-25 01:23

In my app I have two fragments and a MainActivity. The activity_main.xml contains a collapsing toolbar which works perfectly for me when the fragments are empty. In my first fra

2条回答
  •  梦毁少年i
    2021-01-25 02:11

    
    
        
    
            
    
                
            
    
        
    
        
    
            
    
                
    
                
            
    
        
    
    
    

    Use this code. And also you need to change color of tollbar which swutching fragment.

    toolbar.setBackgroundColor(ContextCompat.getColor(getApplicationContext(), android.R.color.transparent));
                        mFragmentToSet = new HomeDashboardFragment();
    

提交回复
热议问题