我正在尝试将GridView
的列之间的空间缩小为0,以使布局100%填充我的项目。目前我仍然在顶部和物品之间有一点填充物。左右两边看起来像我想要的那样。
以下是片段布局的代码:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/movies_fragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<GridView
android:id="@+id/moviesGrid"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:columnWidth="@dimen/poster_width"
android:numColumns="auto_fit"
android:verticalSpacing="0dp"
android:stretchMode="columnWidth"
android:textAlignment="center" />
</FrameLayout>
这是Activity_main布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/drawerLayout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="false">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
<FrameLayout
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
</FrameLayout>
</LinearLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigationView"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="start"
android:background="#E8F5E9"
android:fitsSystemWindows="false"
app:itemTextColor="@android:color/secondary_text_light"
app:menu="@menu/settings_header">
</android.support.design.widget.NavigationView>
</android.support.v4.widget.DrawerLayout>
最后这是我的dimens.xml文件:
<resources>
<!-- Default screen margins, per the Android Design guidelines. -->
<dimen name="activity_horizontal_margin">16dp</dimen>
<dimen name="activity_vertical_margin">16dp</dimen>
<dimen name="fab_margin">16dp</dimen>
<dimen name="poster_width">180dp</dimen>
<dimen name="poster_height">280dp</dimen>
</resources>
以下是它现在的样子:
我尝试使用
机器人:stretchMode = “NONE”
或者只是将值0写入每个填充属性,但它没有用。希望有人能够帮助我。
我也检查这篇文章,得到我现在拥有的东西,然后在每个项目之间有一个非常大的填充: Android: Reduce space between columns in GridView
提前谢谢大家!