我在RecyclerView
中嵌入了ScrollView
。这是完整的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:orientation="vertical">
<LinearLayout
android:layout_width="match_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
<fragment
android:name="devarshi.sample.view.ProductPortfolioFragment"
android:id="@+id/fragmentProductPortfolio"
android:layout_width="match_parent"
android:layout_margin="10dp"
android:layout_height="230dp" />
<LinearLayout
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textViewProductName" />
<TextView
android:text="TextView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textViewProductDescription" />
<LinearLayout
android:id="@+id/linearLayoutProductDetails"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:text="@string/product_detail_title"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/textViewProductDetails" />
</LinearLayout>
</LinearLayout>
<LinearLayout
android:orientation="horizontal"
android:layout_width="match_parent"
android:id="@+id/linearyLayoutOtherProductDetails"
android:layout_height="100dp">
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_weight="0.6"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:id="@+id/linearLayoutPrice"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textViewProductPrice"
android:layout_width="wrap_content"
android:textSize="15sp"
android:textStyle="bold"
android:textColor="@color/colorDiscountedPrice"
android:layout_height="wrap_content"
android:text="1500"/>
<TextView
android:layout_marginLeft="5dp"
android:id="@+id/textViewOldProductPrice"
android:layout_width="wrap_content"
android:textSize="14sp"
android:textColor="@color/colorActualPrice"
android:layout_height="wrap_content"
android:text="200"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textViewQuantity"
android:layout_width="wrap_content"
android:textSize="15sp"
android:textStyle="bold"
android:textColor="@color/colorDiscountedPrice"
android:layout_height="wrap_content"
android:text="Quantity"/>
<TextView
android:layout_marginLeft="5dp"
android:id="@+id/textViewQuantityValue"
android:layout_width="wrap_content"
android:textSize="14sp"
android:textColor="@color/colorActualPrice"
android:layout_height="wrap_content"
android:text="200"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textViewBrand"
android:layout_width="wrap_content"
android:textSize="15sp"
android:textStyle="bold"
android:textColor="@color/colorDiscountedPrice"
android:layout_height="wrap_content"
android:text="Brand"/>
<TextView
android:layout_marginLeft="5dp"
android:id="@+id/textViewBrandValue"
android:layout_width="wrap_content"
android:textSize="14sp"
android:textColor="@color/colorActualPrice"
android:layout_height="wrap_content"
android:text="200"/>
</LinearLayout>
</LinearLayout>
<LinearLayout
android:orientation="vertical"
android:layout_width="0dp"
android:layout_weight="0.4"
android:layout_height="wrap_content">
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:id="@+id/linearLayoutFreeShipping"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/product_detail_free_shipping_icon"
android:id="@+id/imageViewFreeShipping" />
<TextView
android:layout_marginLeft="5dp"
android:id="@+id/textViewFreeShipping"
android:layout_width="wrap_content"
android:textSize="14sp"
android:textColor="@color/colorActualPrice"
android:layout_height="wrap_content"
android:text="@string/product_detail_free_shipping"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:id="@+id/linearLayoutCashOnDelivery"
android:layout_height="wrap_content">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:srcCompat="@drawable/product_detail_cash_on_delivery_icon"
android:id="@+id/imageViewCashOnDelivery" />
<TextView
android:layout_marginLeft="5dp"
android:id="@+id/textViewCashOnDelivery"
android:layout_width="wrap_content"
android:textSize="14sp"
android:textColor="@color/colorActualPrice"
android:layout_height="wrap_content"
android:text="@string/product_detail_cash_on_delivery"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:orientation="horizontal"
android:id="@+id/linearLayoutUnit"
android:layout_height="wrap_content">
<TextView
android:layout_marginLeft="5dp"
android:id="@+id/textViewUnitLabel"
android:layout_width="wrap_content"
android:textSize="14sp"
android:textColor="@color/colorActualPrice"
android:layout_height="wrap_content"
android:text="@string/product_detail_unit"/>
<Button
android:text="-"
android:layout_width="@dimen/product_detail_counter_button_width"
android:layout_height="@dimen/product_detail_counter_button_height"
android:id="@+id/buttonDecrement" />
<TextView
android:id="@+id/textViewUnitValue"
android:layout_width="27dp"
android:textSize="14sp"
android:gravity="center"
android:textColor="@color/colorActualPrice"
android:layout_height="@dimen/product_detail_counter_button_height"
android:text="0"/>
<Button
android:text="+"
android:layout_width="@dimen/product_detail_counter_button_width"
android:layout_height="@dimen/product_detail_counter_button_height"
android:id="@+id/buttonIncrement" />
</LinearLayout>
</LinearLayout>
</LinearLayout>
<android.support.v7.widget.RecyclerView
android:id="@+id/recyclerViewProductDetails"
android:layout_width="match_parent"
android:layout_height="wrap_content">
</android.support.v7.widget.RecyclerView>
</LinearLayout>
</ScrollView>
</LinearLayout>
问题是 -
虽然我已将layout_height
RecyclerView
设为wrap_content
,但其高度部分包裹了内容,理想情况是wrap_content
之后其高度应为150dp
,但它目前正在70dp
。
另一个有趣的场景是 -
如果我将linearyLayoutOtherProductDetails
移到recyclerViewProductDetails
以下,则会RecyclerView
高度准确显示为150dp
。似乎在布局上加载RecyclerView
时,它正在根据当前在布局上可见的项目数(在其中)计算高度,即高度等于5项而不是9项。
关于如何在第一个场景中完全包装其内容的RecyclerView
高度的任何想法?
注意:我正在使用com.android.support:recyclerview-v7:25.0.0
答案 0 :(得分:7)
在ScrollView
中使用NestedScrollView
不是一个很好的做法。您可以考虑将它们全部放在可能符合您目的的linearyLayoutOtherProductDetails
内。这是documentation from developers android。
在您的情况下,您可以考虑将RecyclerView
作为ScrollView
的标题,这应该是最佳解决方案。摆脱NestedScrollView
或RecyclerView
并添加自定义布局作为RecyclerView
的页眉或页脚。
检查my answer here,了解如何在{{1}}中添加页眉/页脚。
答案 1 :(得分:1)
制作recyclerview的linearlayoutOtherProductdetails标题(第一项)并删除scrollview。因为在另一个滚动视图内滚动视图无法正常工作。 另一种解决方案是使用自定义布局管理器,它将回收器视图的高度设置为等于其内容的高度。但这可能导致滚动不佳。
答案 2 :(得分:1)
我遇到了同样的问题,最后我发现,使用未调整大小的heightMeasureSpec而不是零大小时,RecyclerView和LinearLayoutManager的度量逻辑中可能存在错误。
我已将此错误报告给google issuetracker,您可以查看详细信息。
NestedScrollView的子级的垂直边距不为零时,也可能会导致相同的问题,因为它可能将过关模式的heightMeasureSpec传递给子级,而其子级的大小不为零,则子级可能会将类似的heightMeasureSpec传递给RecyclerView。 NestedScrollView的相关代码:
from bokeh.io import output_notebook, show
import bokeh.plotting as bpl
from bokeh.models import ColumnDataSource, HoverTool
output_notebook()
fig = bpl.figure(width=500, height=500, match_aspect=True)
multi_line_source = ColumnDataSource({
'xs': [[0, 1, 2, 3], [0, 1, 2, 3]],
'ys': [[0, 1, 3, 5], [0, -1, -2, -1]],
'color': ["red", "green"],
'line_width': [1, 2],
'type': ["upper curve", "lower curve"],
#'line_dash': ["solid", "dashed"]
})
lines = fig.multi_line('xs', 'ys', color='color', line_width='line_width',\
#line_dash='line_dash',\
source=multi_line_source)
hover = HoverTool(
tooltips=[
("(x,y)", "($x, $y)"),
("type", "@type"),
],
renderers=[lines]
)
fig.add_tools(hover)
show(fig)
要修复此错误,您可以简单地使用下面继承的RecyclerView:
@Override
protected void measureChildWithMargins(View child, int parentWidthMeasureSpec, int widthUsed,
int parentHeightMeasureSpec, int heightUsed) {
final MarginLayoutParams lp = (MarginLayoutParams) child.getLayoutParams();
final int childWidthMeasureSpec = getChildMeasureSpec(parentWidthMeasureSpec,
getPaddingLeft() + getPaddingRight() + lp.leftMargin + lp.rightMargin
+ widthUsed, lp.width);
final int childHeightMeasureSpec = MeasureSpec.makeMeasureSpec(
lp.topMargin + lp.bottomMargin, MeasureSpec.UNSPECIFIED);
child.measure(childWidthMeasureSpec, childHeightMeasureSpec);
}