Prevent CollapsingToolbarLayout collapse if not needed

前端 未结 6 1924
情歌与酒
情歌与酒 2020-12-05 02:30

Using:

compile \'com.android.support:design:23.0.0\'
compile \'com.android.support:appcompat-v7:23.0.0\'
compile \'com.android.support:cardview-v7:23.0.0\'
c         


        
6条回答
  •  一向
    一向 (楼主)
    2020-12-05 03:16

    In xml I have used property

    app:layout_scrollFlags="snap" in

    and following in the activity

     toolbar = (Toolbar) findViewById(R.id.toolbar);
     setSupportActionBar(toolbar);
     toolbar.setTitle(null);
     toolbar.setCollapsible(false);
    

    It is working now.

提交回复
热议问题