Question

i'm trying to build a layout-list for layer drawable

this is my code:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent" >

<item
    android:drawable="@drawable/sign"
    android:id="@+id/sign"/>
</layer-list>

this is the error in the graphic layout:

com.android.layoutlib.bridge.MockView cannot be cast to android.view.ViewGroup
Exception details are logged in Window > Show View > Error Log
The following classes could not be found:
- item (Fix Build Path, Edit XML)
- layer-list (Fix Build Path, Edit XML)

someone please ?

Was it helpful?

Solution

I pasted this in a new file in my current project, saved and rebuilt without a glitch. Have you cleaned your project and tried rebuilding?

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top