问题:android:editable is deprecated: Use an to make it editable 意思:Android的:编辑是反对:使用<</span> EditText >对其编辑 分析:关于EditText控件的read-only问题,即: 无法通过UI更改其中的内容, 但可以选定部分内容, 进行复制.在早期的sdk, EditText有Editable属性, 现在这个属性已经deprecated了. 解决方法: 其实只需一行代码就能搞定et…
在android的sdk中有讲,“This is the interface for text whose content and markup can be changed (as opposed to immutable text like Strings).” 这表明Editable 是个借口,而且内容是可以改变的,但string类型的content是不能改变的.…
EditText的background属性设置为@null就搞定了:android:background="@null"style属性倒是可加可不加 附原文:@SlumberMachine, that's a great observation! But, it seems that there is more to making a TextView editable than just setting android:editable="true". It ha…