I am bit amateur in the android programming and I have trying to implement a project in eclipse. I have already added up the android-support-v7-appcompat.jar as the library. I am getting the error in my toolbar.xml as
error: No resource identifier found for attribute 'theme' in package 'com.example.goon'
Here is my toolbar.xml code:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
I am bit confused with what should be done and I would be glad if anyone could help me with the issue. Thanks in advance.