我正在尝试使用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>
答案 0 :(得分:1)
尝试使用此代码,仅更改GridLayout的布局。您可以更改rootLayout的constraintLayout的布局。
<?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">
<GridLayout
android:layout_width="368dp"
android:layout_height="368dp"
android:columnCount="3"
android:rowCount="3"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<ImageView
android:id="@+id/imageView"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="10dp"
android:src="@drawable/user" />
<ImageView
android:id="@+id/imageView2"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="10dp"
android:src="@drawable/user" />
<ImageView
android:id="@+id/imageView3"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="10dp"
android:src="@drawable/user" />
<ImageView
android:id="@+id/imageView4"
android:layout_width="100dp"
android:layout_height="100dp"
android:layout_margin="10dp"
android:src="@drawable/user" />
</GridLayout>
答案 1 :(得分:0)
设置网格布局的方向
<GridLayout
android:columnCount="3"
android:rowCount="3"
android:orientation="horizontal"
/>
答案 2 :(得分:0)
只需更改您的<android.support.v7.widget.GridLayout
<GridLayout
android:layout_width="368dp"
android:layout_height="368dp"
android:background="@drawable/board"
android:columnCount="3"
android:rowCount="3"
android:orientation="horizontal"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent">
<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" />
</GridLayout>
此显示预览对我来说。尝试这个。
还要检查依赖库版本
implementation 'com.android.support.constraint:constraint-layout:1.1.0'
答案 3 :(得分:0)
在我的Android Studio中,您的xml同时显示在预览和仿真器中。尝试执行以下操作。
1)再次添加build.gradle(Module.app)这些依赖项
implementation 'com.android.support:gridlayout-v7:27.1.1'
implementation 'com.android.support:appcompat-v7:27.1.1'
2)成功导入依赖关系后,刷新Android Studio
希望它能起作用!
答案 4 :(得分:0)
对于那些偶然发现此错误的人。仅在XML中将android.support.v7.widget.GridLayout更改为GridLayout。我有同样的问题,这就是解决方案。