-
Notifications
You must be signed in to change notification settings - Fork 422
No resource identifier found for attribute 'blockButtonEffectHeight' #13
Comments
I checked this but I didn't have any error. Are you sure that you are using the 2.0.0 version of the library? Because this attribute is added @ 2.0.0. |
compile 'com.github.eluleci:flatui:2.0.0' Yes, that is the line inputted into my Build.Gradle |
There can be another cause. If you use multiple namespace like Otherwise I cannot think about anything that can cause this. Finally, try to remove the dependency, add again, clean the project and re-build. This may solve. |
I know I had 2 namespaces, so I'll have to reimplement the design and test again when I can. Thanks for the help |
i had the same issue adding xmlns:another="http://schemas.android.com/apk/res-auto" helped but i get another error now it says "error:Error parsing XML:unbound prefix" in the second line of code
|
The reason you have this problem is that you didn't define 'flatui' prefix. If you use different attributes from different libraries use something like xmlns:app="http://schemas.android.com/apk/res-auto" only. Then use attributes from all of the libraries with same prefix like: //Some other widget from another library |
@eluleci actually I did define flatui. I still have to clue why it didnt work for this one project, but I just started another project and it works great! |
I'm having the same issues. I have three namespaces: android, tools, and flatui. They each point to a different URL. Everything worked fine on my laptop, but then I pulled the project from git on my desktop and I'm getting these strange issues. Edit: strangely enough, I downgraded my FlatUI version to 2.0.2 and it works on my desktop. Weird, but I'm not complaining. |
How to resolve namespace issue from different library module like |
Hey guys I'm using Android Studio and I'm encountering a weird error, I have added this line to the XML layout: xmlns:flatui="http://schemas.android.com/apk/res-auto"
but to no avail. I'm using this attribute on a FlatButton, and nothing else has given me this issue either.
The text was updated successfully, but these errors were encountered: