Android 工作室未显示工具栏,但设备显示了它

Android studio is not showing toolbar but device is showing it

我正在使用

Android Studio 3.1.3
Build #AI-173.4819257, built on June 4, 2018
JRE: 1.8.0_152-release-1024-b01 amd64
JVM: OpenJDK 64-Bit Server VM by JetBrains s.r.o
Linux 4.15.0-29-generic

具有依赖性

implementation 'com.android.support:appcompat-v7:28.0.0-beta01'

这是工具栏布局:

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="?attr/actionBarSize"
    android:background="?attr/colorPrimary"
    android:elevation="4dp"
    app:popupTheme="@style/AppTheme.PopupOverlay"
    app:theme="@style/ToolBarStyle" />

问题: Android studio 没有显示设计布局,但是当我 运行 代码时我可以看到工具栏。

这是 sdk 28 中的错误。他们将在未来的更新中修复此问题。可能当它的稳定版本出来时。我也遇到过这个问题,我的做法是:

1) 在模拟器或真实设备上测试。

2) 在 sdk 27​​ 中编写我的项目(这样我可以看到布局),在设备上测试时,我将其更改为 sdk 28。

希望这个回答对您有所帮助。