EditText non editable(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:inputType="none"
.
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 不可编辑的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:EditText 不可编辑
基础教程推荐
- 当从同一个组件调用时,两个 IBAction 触发的顺序是什么? 2022-01-01
- 如何在 UIImageView 中异步加载图像? 2022-01-01
- 如何在没有IB的情况下将2个按钮添加到右侧的UINavigationbar? 2022-01-01
- 如何让对象对 Cocos2D 中的触摸做出反应? 2022-01-01
- android 应用程序已发布,但在 google play 中找不到 2022-01-01
- Android:对话框关闭而不调用关闭 2022-01-01
- 在 gmail 中为 ios 应用程序检索朋友的朋友 2022-01-01
- 如何在 iPhone 上显示来自 API 的 HTML 文本? 2022-01-01
- Kivy Buildozer 无法构建 apk,命令失败:./distribute.sh -m “kivy"d 2022-01-01
- UIWebView 委托方法 shouldStartLoadWithRequest:在 WKWebView 中等效? 2022-01-01