Android中editText使用报错

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android中editText使用报错相关的知识,希望对你有一定的参考价值。

在activity_main.xml文件中添加了editText控件

 <EditText
        android:id="@+id/edit_text"
        android:hint="@the next"   

  <!--用the next或者@the next都报错,要使用@string/the next,用标准写法在string.xml文件中配置键值对(name:the next   vlaue:下一步),注意键值对有未使用的也会报错-->
        android:inputType="text"
        android:text="@string/string1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/textView"
        android:layout_below="@+id/textView"
        android:layout_marginTop="36dp"
        android:ems="10" /> 

提示error: Error: No resource type specified (at ‘hint‘ with value ‘@string‘)

以及Hardcoded string "the next", should use @string resource

error: No resource identifier found for attribute ‘backIcon’ in package三个错误

第三个错误属于自定义控件的命名空间问题,我贴出个链接自己去看http://blog.sina.com.cn/s/blog_6aefcbed01013rpc.html  

当然我这之所以报错纯属我把inputType拼错了

 











以上是关于Android中editText使用报错的主要内容,如果未能解决你的问题,请参考以下文章

Android 工作问题解决记录

Android中editText使用报错

Android实现EditText禁止输入换行符但可以根据内容自动换行的解决方法

Android EditText如何设置默认是不弹出软键盘需要点击是才跳出来

错误记录Android 中使用 Kotlin 为 EditText 组件设置文本报错 ( Type mismatch. Required:Editable. Found:String )

Android,DataBinding的官方双向绑定