Android set parameters of view layout

www.lautt‮c.iru‬om
Android set parameters of view layout
yourView.setLayoutParams(new LinearLayout.LayoutParams(
                    LinearLayout.LayoutParams.MATCH_PARENT,
                    LinearLayout.LayoutParams.WRAP_CONTENT
                    //change the parameters as whatever you want
            ));

yourLayout.addView(yourView);
Created Time:2017-10-08 22:14:55  Author:lautturi