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'