No source identifier for the attribute "validatorRegexp"
我最近开始研究android应用程序,我想在我的应用程序中访问该库(这是一个项目),但上面的错误正在显示
<ScrollView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:wiget="http://schemas.android.com/apk/res/com.extend.example"
android:id="@+id/scroll" android:layout_width="fill_parent"
android:layout_height="wrap_content">
<com.extend.wiget.ExtEditText
wiget:validate="regexp|numeric|alpha|alphaNumeric|email|creditCard|phone|domainName|ipAddress|webUrl"
wiget:validatorRegexp="regexp|empty"
wiget:errorString="Custom error message!"
wiget:emptyErrorString="Custom empty error message!"
wiget:auto="true"
android:id="@+id/extEditText11"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:hint="Custom validations"
android:text="">
</com.extend.wiget.ExtEditText>
</ScrollView>
Please help me out on this and sorry for the bad english
答案 0 :(得分:0)
在整个XML中,您的单词widget
拼写错误吗?如果您没有获得正确的命名空间并使用此错误命名空间中的元素,则会出现错误。
此外,如果不知道您正在使用/扩展哪个库,很难提供帮助。