我有一个应用程序,它采用可变数量的用户名,并为每个用户构建一个包含两列的网格。问题是,我希望网格中的列彼此之间没有空格。如果他们没有填满屏幕,我希望他们以中心为中心。我已经尝试过在Stack Overflow上找到的所有建议,但到目前为止还没有任何工作。
我更改了列宽,重力,水平间距和拉伸模式。我还缺少其他可能有帮助的价值吗?
以下是包含我的网格视图的布局:
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/greetPlayers"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginEnd="8dp"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:gravity="center"
android:text="Player Names Here"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent" />
<GridView
android:id="@+id/score_gridview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginStart="8dp"
android:layout_marginTop="8dp"
android:columnWidth="100dp"
android:horizontalSpacing="0dp"
android:verticalSpacing="0dp"
android:gravity="center"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toBottomOf="@+id/greetPlayers" />
<FrameLayout
android:id="@+id/scoreEntryWindow"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:layout_editor_absoluteX="64dp"></FrameLayout>
</android.support.constraint.ConstraintLayout>
以下是网格中每个项目的布局:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<FrameLayout
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginRight="-15dp">
<ImageView
android:id="@+id/backgroundCellImage"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/empty_square" />
<TextView
android:id="@+id/foregroundCellContents"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="1,1" />
</FrameLayout>
</LinearLayout>
编辑6月20日:更改网格视图中的项目以匹配父项,它们现在以超宽空间为中心,但仍有空格。
Link to new image - can't embed images in posts yet.