EditText不可编辑 [英] EditText non editable

查看:81
本文介绍了EditText不可编辑的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我正在尝试使用以下代码使EditText不可

I'm trying to make an EditText non editable with this code:

<EditText android:id="@+id/outputResult"
          android:inputType="text"
          android:editable="false"
          android:layout_width="fill_parent"
          android:layout_height="wrap_content"
          android:text="@string/result" />

我必须添加以下行使其不可编辑

I had to add following line to make it non-editable

android:focusable="false" 

我做错什么了吗?

非常感谢您

推荐答案

android:editable="false"应该可以,但是.

android:editable="false" should work, but it is deprecated, you should be using android:inputType="none" instead.

或者,如果您想在代码中执行此操作,则可以这样做:

Alternatively, if you want to do it in the code you could do this :

EditText mEdit = (EditText) findViewById(R.id.yourid);
mEdit.setEnabled(false);

这也是一个可行的选择:

This is also a viable alternative :

EditText mEdit = (EditText) findViewById(R.id.yourid);
mEdit.setKeyListener(null);

如果您要使EditText不可编辑,我建议使用TextView小部件而不是EditText,因为在这种情况下,使用EditText似乎毫无意义.

If you're going to make your EditText non-editable, may I suggest using the TextView widget instead of the EditText, since using a EditText seems kind of pointless in that case.

编辑:自从我发现不推荐使用android:editable以来,更改了一些信息,您应该使用android:inputType="none",但是在android代码上有一个关于此的错误;因此,请检查.

Altered some information since I've found that android:editable is deprecated, and you should use android:inputType="none", but there is a bug about it on android code; So please check this.

这篇关于EditText不可编辑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆