I tried,
recyclerview.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT,100));
But its not working.
Try to set height like this,
ViewGroup.LayoutParams params=recyclerview.getLayoutParams(); params.height=100; recyclerview.setLayoutParams(params);
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With