unexpected namespace prefix "app" found for tag TextView
See original GitHub issueIDE: Android Studio 0.8.2
Whenever I use the app:fontPath in a layout in Android Studio, I get a warning “unexpected namespace prefix “app” found for tag TextView.” I’m adding xmlns:app="http://schemas.android.com/apk/res-auto"
in my root layout. I have to add tools:ignore=“MissingPrefix” to the view to remove the warning.
I have the following in my values/attr.xml:
<?xml version="1.0" encoding="utf-8"?>
<resources>
<attr name="fontPath" />
</resources>
Edit: To be clear, this does not break anything. It’s just a slight irritant 😀
Issue Analytics
- State:
- Created 9 years ago
- Reactions:2
- Comments:18 (9 by maintainers)
Top Results From Across the Web
Unexpected namespace prefix "app" found for tag ...
For someone who gets the similar error Unexpected namespace prefix “app” found on textView, you might need to change TextView to ...
Read more >[Android] unexpected namespace prefix "app" found for tag
Unexpected namespace prefix "app" found for tag TextView less... (Ctrl+F1). Most Android views have attributes in the Android namespace.
Read more >Android – Unexpected namespace prefix “app” found for tag ...
e.g. I imported layout_toolbar_default.xml and using app:toolbarTitle to specify title . ... This will show error Unexpected namespace prefix "app" found .
Read more >Android xml error Attribute is missing the Android namespace ...
Attribute is missing the Android namespace prefix. This error is related to one of the XML files in your Android Workspace Project,.
Read more >Using a non-android namespace prefix in child elements in a ...
add xmlns:tools="http://schemas.android.com/tools" to your root view; add tools:ignore="MissingPrefix" to your text view. On a side note, however, ...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
I think changing TextView to android.support.v7.widget.AppCompatTextView could fix the issue. Can anyone confirm this?
I’ve always had to add this line under the xmnls:android line, xmlns:tools=" http://schemas.android.com/tools" and then add tools:ignore=“missingPrefix” underneath that. On Jul 17, 2014 6:45 AM, “Gabriel Ittner” notifications@github.com wrote: