How to set RecyclerView Max Height

前端 未结 12 1622
陌清茗
陌清茗 2020-12-01 15:55

I want to set Max Height of RecylerView.I am able to set max height using below code.Below code makes height 60% of current screen.

     DisplayMetrics displ         


        
12条回答
  •  [愿得一人]
    2020-12-01 16:04

    write this statements inside if else and let me know ,

    ViewGroup.LayoutParams params=recyclerview.getLayoutParams();
    params.height=100;
    recyclerview.setLayoutParams(params);
    

提交回复
热议问题