我在FrameLayout中有一个ScrollView。 ScrollView有一个子LinearLayout。我正在以编程方式将ImageViews添加到此LinearLayout。我希望scrollview能够水平滚动。
<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的方式(目前正在将图像硬编码为drawables)
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被添加到布局中,但最后一个图像缩小了它的大小,我无法滚动。