No resource identifier found for attribute '...' in package 'com.app....'

AndroidAndroid StudioAndroid ViewAndroid Custom-View

Android Problem Overview


I've imported a project from Eclipse to Android studio. It utilizes a custom view:

xmlns:app="http://schemas.android.com/apk/res-auto"

I get errors in the lines below from activity_ro.xml file like:

> "Error:(136) No resource identifier found for attribute > 'pstsTabPaddingLeftRight' in package 'com.app.xxxx'"

app:pstsDividerColor="#00000000"
app:pstsIndicatorColor="#FF33B5E6"
app:pstsTabPaddingLeftRight="14dip"
app:pstsUnderlineColor="#FF33B5E6" />

I'm not sure if custom views are different for gradle or maybe I'm doing something wrong. Anyone have an idea?

Android Solutions


Solution 1 - Android

I just changed:

xmlns:app="http://schemas.android.com/apk/res-auto" 

to:

xmlns:app="http://schemas.android.com/apk/lib/com.app.chasebank"

and it stopped generating the errors, com.app.chasebank is the name of the package. It should work according to this Stack Overflow : No resource identifier found for attribute 'adSize' in package 'com.google.example' main.xml

Solution 2 - Android

You can also use lib-auto

 xmlns:app="http://schemas.android.com/apk/lib-auto"

Solution 3 - Android

I was facing the same problem and solved it using the below steps:

Add this in your app's build.gradle

android {
    defaultConfig {
        vectorDrawables.useSupportLibrary = true
    }
}

Use namespace:

xmlns:app="http://schemas.android.com/apk/res-auto"

Then use:

app:srcCompat="@drawable/your_vector_drawable_here"

Solution 4 - Android

I've been searching answer but couldn't find but finally I could fix this by adding play-service-ads dependency let's try this

*) File -> Project Structure... -> Under the module you can find app and there is a option called dependencies and you can add com.google.android.gms:play-services-ads:x.x.x dependency to your project

I faced this problem when I try to import eclipse project into android studio

Click here to see screenshot

Solution 5 - Android

I solved is by using android:background instead of app:srcCompact.

This is caused by xmlns:app="http://schemas.android.com/apk/res-auto";. As people have suggested above, you could use /lib-auto or /lib/your-package but I got suspicious namespace error when I tried using /lib-auto and unexpected namespace prefix error with /lib/my-package .

Solution 6 - Android

this helps for me:

on your build.gradle:

implementation 'com.android.support:design:28.0.0'

Solution 7 - Android

This also happened to me when a PercentageRelativeLayout https://developer.android.com/reference/android/support/percent/PercentRelativeLayout.html was used and the build was targeting Android 0 = 26. PercentageRelativeLayout layout is obsolete starting from Android O and obviously sometime was changed in the resource generation. Replacing the layout with a ConstraintLayout or just a RelativeLayout solved it.

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionkevthanewversiView Question on Stackoverflow
Solution 1 - AndroidkevthanewversiView Answer on Stackoverflow
Solution 2 - AndroidJose M LechonView Answer on Stackoverflow
Solution 3 - AndroidSaini ArunView Answer on Stackoverflow
Solution 4 - AndroidHashanRView Answer on Stackoverflow
Solution 5 - AndroidRazaView Answer on Stackoverflow
Solution 6 - AndroidAcauã PittaView Answer on Stackoverflow
Solution 7 - Androidk_o_View Answer on Stackoverflow