Після оновлення Android Studio з 2.3 до 3.0 я змінив buildToolsVersion
з 26.0.0 на 26.0.2, після чого отримую цю помилку:
Cannot resolve symbol '?attr/actionBarSize
Xml код:
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light"
app:titleTextColor="@android:color/white"/>
Залежності:
compile 'com.android.support:appcompat-v7:26.1.0'
compile 'com.android.support:design:26.1.0'