有什么方法可以获取回收站视图的实际高度?

时间:2018-12-19 12:11:25

标签: android android-layout android-fragments android-recyclerview

我的布局包括一些按钮,文本视图和一个recyclerview。

布局已经具有scrollView,因此我禁用了scroll的{​​{1}}。

现在我想以编程方式设置recyclerView的高度。

这就是我现在正在做的。

recyclerView

在这里,我正在对 int totalItems= cardsRecyclerAdapter.getItemCount(); ViewGroup.LayoutParams params=rvCards.getLayoutParams(); params.height=200*totalItems; rvCards.setLayoutParams(params); 进行硬编码以进行测试,并且工作正常,但是我正在使用200进行图像高度设置,并且图像高度可以是任意长度,因此我想计算正确的方法。

有什么方法可以获取回收站视图的实际高度吗?

0 个答案:

没有答案