我有一个 HorizontalScrollView 和一个线性布局
<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>
Programmaticaly 我正在尝试通过以下方式在 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);
问题是在水平滚动视图中,图像之间有很大的差距。我只希望图像彼此相邻。我怎样才能成功?