Search code examples
androidxml

Element shape doesn't have required attribute android:layout_height


I'm using a shape element to put as the background of a view, doing as this SO question. I'm using Android Studio and it tells me that...

Element shape doesn't have required attribute android:layout_height

Element shape doesn't have required attribute android:layout_width

The code is as follows:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">

<solid android:color="@color/darkBrown"/>
<stroke android:layout_width="match_parent" android:layout_height="match_parent"/>
<corners android:radius="10dip"/>
<padding android:left="0dip" android:right="0dip" android:top="0dip" android:bottom="0dip"/>

</shape>

So basically my question: why do I get this error if shapes technically don't need these attributes? How can I tell android to stop marking it as an error or how can I avoid it?

Thank you.

SOLVED: The reason was because it wasn't inside the drawable folder.

EDIT: Yes I'm aware the stroke part is incorrect.


Solution

  • The reason the error was shown is because it wasn't inside the drawable folder. (It moved automatically to layout when I renamed the drawable folder after a typo.)