我在 FrameLayout 中有一个 ScrollView。ScrollView 有一个子 LinearLayout。我以编程方式将 ImageViews 添加到此 LinearLayout 中。我希望滚动视图水平滚动。
<FrameLayout
android:id="@+id/imgScroll"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/avatar_block">
<ScrollView
android:id="@+id/avatarScrollView"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:fillViewport="true">
<LinearLayout
android:id="@+id/scrollLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="left">
</LinearLayout>
</ScrollView>
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<!-- 2 ImageViews -->
</RelativeLayout>
</FrameLayout>
这就是我添加 ImageViews 的方式(目前将图像硬编码为可绘制对象)
LinearLayout inScrollLayout = (LinearLayout) findViewById(R.id.scrollLayout);
for(int i = 0; i < imgArray.length; i++)
{
ImageView imgView = new ImageView(this);
imgView.setImageResource(R.drawable.icon);
imgView.setPadding(0, 0, 40, 0);
inScrollLayout.addView( imgView);
}
ImageViews 被添加到布局中,但最后一张图像缩小了它的大小,我无法滚动。