Skip to content Skip to sidebar Skip to footer

Android Error - Failed To Find Style 'toolbarStyle' In Current Theme

I'm new to Android Programming. Currently following series of youtube videos (https://www.youtube.com/watch?v=Bzh9P1z1l90&list=PLshdtb5UWjSoLy2LPP1FsHi1hwoAS4SBi&index=7) t

Solution 1:

I think you have to use ThemeOverlay.AppCompat.Dark.ActionBar as the themeOverlay on your Toolbar instead.


Solution 2:

Replace below code

<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" 
          package="com.bhramaan.android.bhramaan">
    <application
        android:allowBackup="true" 
        android:icon="@mipmap/ic_launcher" 
        android:label="@string/app_name" 
        android:supportsRtl="true" 
        android:theme="@style/BhramaanTheme"> 
        <activity android:name=".LoginActivity"> 
            <intent-filter> 
                <action android:name="android.intent.action.MAIN" /> 
                <category android:name="android.intent.category.LAUNCHER" />
            </intent-filter> 
        </activity> 
    </application> 
</manifest>

Post a Comment for "Android Error - Failed To Find Style 'toolbarStyle' In Current Theme"