我正在尝试使用 GridLayout 创建像井字游戏这样的游戏。预览屏幕可以显示 GridLayout(板)的背景图片,但无法显示我在 GridLayout(红色 O)中插入的 imageView。消息框中还有一个错误:
java.lang.ClassNotFoundException: android.view.View$OnUnhandledKeyEventListener
我试图刷新布局并重建项目,但仍然无法修复错误。
预览屏幕与显示两个图像的模拟器屏幕比较
activity_main.xml 的代码
<?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">
<android.support.v7.widget.GridLayout
android:layout_width="368dp"
android:layout_height="368dp"
android:background="@drawable/board"
app:columnCount="3"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
app:rowCount="3">
<ImageView
android:id="@+id/imageView"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="10dp"
app:srcCompat="@drawable/red" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="10dp"
app:srcCompat="@drawable/red" />
</android.support.v7.widget.GridLayout>
</android.support.constraint.ConstraintLayout>