A similar question was published:
I can not see nothing on the screen design. (Android Studio)
but in this case the error is:
failed to load AppCompat ActionBar with unknown error
I suggest you have as minimum configuration:
use:
dependencies {
...
implementation 'com.android.support:appcompat-v7:26.1.0'
...
}
with:
compileSdkVersion 26
buildToolsVersion "26.0.1"
and within the build.gradle
file located in the root of the project, use minimum gradle version 3.0.1:
buildscript {
...
....
dependencies {
classpath 'com.android.tools.build:gradle:3.0.1'
...
...
}
}