Android中如何在代碼中設置View的寬和高?
https://zhidao.baidu.com/question/536302117.html
https://blog.csdn.net/u014165633/article/details/52880841
動態設置RecyclerView的高度
https://www.cnblogs.com/sanbianxia/p/7590339.html
android 動態設置控件的高度,使用對應布局中的dp值
https://blog.csdn.net/shuang__zi/article/details/46360697
LinearLayout.LayoutParams linearParams =(LinearLayout.LayoutParams) myView.getLayoutParams();
linearParams.height=((int)TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, 42, getResources().getDisplayMetrics()));
myView.setLayoutParams(linearParams);
the width, either MATCH_PARENT, WRAP_CONTENT or a fixed size in pixels
https://stackoverflow.com/questions/17383285/what-unit-of-measure-does-layoutparams-use