TPWang
TPWang

Reputation: 1352

Cannot resolve symbol CoordinatorLayout

I can use coordinator layout in my xml files but when I tried to import it in my java class it said "Cannot resolve symbol CoordinatorLayout while other classes in the same packages work fine.

Screenshot is shown below: enter image description here

Dependencies: enter image description here

Upvotes: 1

Views: 3671

Answers (1)

Mikhail Valuyskiy
Mikhail Valuyskiy

Reputation: 1288

Try this

 compile 'com.android.support:design:25.1.1'

Upvotes: 4

Related Questions