我在 android 中使用画廊来显示图像。我的问题是如何在画廊内设置 imageViews 的边距,以便它们不会彼此相邻,而是在它们之间留出一些空间。
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<Gallery
android:id="@+id/glr"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="10dp" />
<ImageView
android:id="@+id/imageView1"
android:layout_marginTop="100dp"
android:layout_width="250dp"
android:layout_gravity="center_horizontal"
android:layout_height="250dp" />
</LinearLayout>
这就是我在图库中设置 imageView 的方式:
public View getView(int index, View view, ViewGroup viewGroup)
{
ImageView i = new ImageView(mContext);
i.setImageBitmap(photos[index]);
LinearLayout.LayoutParams params = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.WRAP_CONTENT, LinearLayout.LayoutParams.WRAP_CONTENT);
params.setMargins(50, 50, 50, 50);
i.setLayoutParams(params);
return i;
}