HorizontalScrollView と Linear レイアウトがあります
<HorizontalScrollView
android:id="@+id/scrollView"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout
android:id="@+id/filesScrollerLayout"
android:orientation="horizontal"
android:layout_width="wrap_content"
android:layout_height="wrap_content">
</LinearLayout>
</HorizontalScrollView>
プログラム的に、次の方法でlinearLayoutにビューを追加しようとしています:
LinearLayout layout = (LinearLayout)findViewById(R.id.filesScrollerLayout);
ImageView imageView1 = new ImageView(this);
ImageView imageView2 = new ImageView(this);
ImageView imageView3 = new ImageView(this);
imageView1.setImageDrawable(Drawables);
imageView2.setImageDrawable(Drawables);
imageView3.setImageDrawable(Drawables);
問題は、水平スクロール ビューで画像間に大きなギャップがあることです。画像を隣り合わせにしたいだけです。どうすればそれを成功させることができますか?