- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent"
- android:orientation="horizontal">
-
- <GridView
- android:id="@+id/GridView1"
- android:layout_width="fill_parent"
- android:layout_height="wrap_content"
- android:numColumns="4"></GridView>
- </LinearLayout>
复制代码- <?xml version="1.0" encoding="utf-8"?>
- <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- <ImageView
- android:id="@+id/ItemImage"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content">
- </ImageView>
- </LinearLayout>
复制代码 现在运行出来,每行显示四张图片,如果屏幕太宽的话,图片之间就会有间隙,怎样调整才能没有间隙,图片在一行中居中呢?感谢!
|