安卓 4.1.0。
我有一个水平滚动视图,在里面 - LinearLayout
。在 LinearLayout 中,我以编程方式在 fragment 中添加了一些子项onResume
。在儿童适合视野的情况下,一切都很好。如果子视图不适合视图,则从左侧HorizontalView
隐藏前n 个元素,并为右侧的 n 个元素保留可用空间。
我试图打电话computeScroll
或requestLayout
/ forceLayout
,但它没有帮助。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<HorizontalScrollView
android:id="@+id/productListScroll"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<LinearLayout
android:id="@+id/productListLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:layout_margin="5dp"
android:orientation="horizontal"
android:paddingBottom="10dp"
android:paddingLeft="10dp"
android:paddingTop="10dp" />
</HorizontalScrollView>
...
</LinearLayout>
和片段中的代码:
public void onResume() {
super.onResume();
productsPanel.removeAllViews();
for (Product product : currentOrder.getProductList()) {
productsPanel.addView(new ...); //view with calculated height and width
productsPanel.addView(new ...); //view with fixed width and height = MATCH_PARENT
}
}