2

I know this question has been asked many times. But from what I read, the method I'm trying should work.

I'm trying to follow the steps mentioned in this link. Here is my code for it: (styles.xml)

<?xml version="1.0" encoding="utf-8"?>
<resources>
  <style name="Theme">
     <item name="panelFullBackground">@drawable/background</item>
  </style>
</resources>

I'm getting an error that says:

No resource found that matches the given name: attr 'panelFullBackground'.
Community
  • 1
  • 1
Jrom
  • 849
  • 1
  • 10
  • 19

1 Answers1

4

you need change panelFullBackground to android:panelFullBackground

idiottiger
  • 5,147
  • 2
  • 25
  • 21