Reputation: 494
I'm using Android Studio 3.0 with the latest update on macOS recently the constraint layout editor stopped working. It's working when i run on the code on emulator/device but for the design and preview tabs it doesn't show up. I'm using constraint layout 1.0.2 i tried the other versions as well not working.
i have tried support library 26, 26-beta1 and 26-beta2 no good there as well.
Upvotes: 1
Views: 2796
Reputation: 21
Change the theme to Material will solve the issue. By default it will be AppTheme
Upvotes: 2
Reputation: 6622
I have face same issue while i update my Android Studio
. it's because of your support library
latest version.
see this : See Link
In this Main thing you have to check gradle
file.
In sort you have to down support lib version because 26 version is still in beta phase
compile com.android.support:appcompat-v7:25.4.0'
Upvotes: 2