imageView 不显示在预览场景上,但仍然显示在模拟器上

imageView does not display on the preview scence but still displays on the emulator

我正在尝试使用 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>

设置网格布局的方向

<GridLayout
    android:columnCount="3"
    android:rowCount="3"
    android:orientation="horizontal"
     />

只要改变你的<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'

在我的 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

希望有用!

尝试此代码并仅更改 GridLayout 采取...您可以更改根布局而不是 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>

对于偶然发现此错误的人。仅在 XML 中将 android.support.v7.widget.GridLayout 更改为 GridLayout。我遇到了同样的问题,这就是解决方案。