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"?><manifestxmlns:android="http://schemas.android.com/apk/res/android"package="com.bhramaan.android.bhramaan"><applicationandroid:allowBackup="true"android:icon="@mipmap/ic_launcher"android:label="@string/app_name"android:supportsRtl="true"android:theme="@style/BhramaanTheme"><activityandroid:name=".LoginActivity"><intent-filter><actionandroid:name="android.intent.action.MAIN" /><categoryandroid:name="android.intent.category.LAUNCHER" /></intent-filter></activity></application></manifest>

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