可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
In my application, I have an EditText that the user only has Read access not Write access.
In code I set android:enabled="false"
.
Although the background of EditText changed to dark, when I click on it the keyboard pops up and I can change the text.
What should I set to disable EditText?
回答1:
I believe the correct would be to set android:editable="false"
.
And if you wonder why my link point to the attributes of TextView
, you the answer is because EditText
inherits from TextView
:
EditText is a thin veneer over
TextView that configures itself to be
editable.
Update:
As mentioned in the comments below, editable
is deprecated (since API level 3). You should instead be using inputType
(with the value none
).
回答2:
use EditText.setFocusable(false)
to disable editing
EditText.setFocusableInTouchMode(true)
to enable editing;
回答3:
You can try the following method :
private void disableEditText(EditText editText) {
editText.setFocusable(false);
editText.setEnabled(false);
editText.setCursorVisible(false);
editText.setKeyListener(null);
editText.setBackgroundColor(Color.TRANSPARENT);
}
Enabled EditText :
Disabled EditText :
It works for me and hope it helps you.
回答4:
Use this to disable user input
android:focusable="false"
android:editable="false" This method is deprecated one.
回答5:
For disable edit EditText
, I think we can use focusable
OR enable
but
Using android:enabled=...
or editText.setEnabled(...)
It also changes the text color in EditText
to gray.
When clicked it have no effect
Using android:focusable=...
or editText.setFocusable(false)
- editText.setFocusableInTouchMode(true)
It doesn't change text color of EditText
When clicked it highlights the EditText
bottom line for about few millisecond
Output
回答6:
As android:editable="false"
is depricated.You can use InputType TYPE_NULL on EditText
use like this :
editText.setInputType(InputType.TYPE_NULL);
回答7:
As android:editable="false"
deprecated
In xml
Use android:enabled="false"
it's simple. Why use more code?
If you want in java class
you can also use this programmatically
editText.setEnabled(false);
回答8:
Simply:
editText.setEnabled(false);
回答9:
Set below properties in class:
editText.setFocusable(false);
editText.setEnabled(false);
It will work smoothly as you required.
回答10:
回答11:
if you use android:editable="false"
, eclipse will remind you this message "android:editable is deprecated: Use inputType instead".
So, I use android:focusable="false"
instead, it worked well for me.
回答12:
android:editable="false"
is now deprecated and use
YourEditText.setInputType(InputType.TYPE_NULL);
回答13:
To disable the functionality of an EditText, just use:
EditText.setInputType(InputType.TYPE_NULL);
in case you want to enable it some way, then you can use:
EditText.setInputType(InputType.TYPE_CLASS_TEXT);
回答14:
This will make your edittext disabled.
editText.setEnabled(false);
And by using this
editText.setInputType(InputType.TYPE_NULL);
Will just make your Edittext not show your softkeyboard, but if it is connected to a physical keyboard, it will let you type.
回答15:
In my case I needed my EditText
to scroll text if no. of lines exceed maxLines
when its disabled. This implementation worked perfectly for me.
private void setIsChatEditTextEditable(boolean value)
{
if(value)
{
mEdittext.setCursorVisible(true);
mEdittext.setSelection(chat_edittext.length());
// use new EditText(getApplicationContext()).getKeyListener()) if required below
mEdittext.setKeyListener(new AppCompatEditText(getApplicationContext()).getKeyListener());
}
else
{
mEdittext.setCursorVisible(false);
mEdittext.setKeyListener(null);
}
}
回答16:
Try this one, works fine for me:
public class CustomEdittext extends EditText {
Boolean mIsTextEditor=true;
public CustomEdittext(Context context, AttributeSet attrs) {
super(context, attrs);
// TODO Auto-generated constructor stub
}
@Override
public boolean onCheckIsTextEditor() {
// TODO Auto-generated method stub
return mIsTextEditor;
}
@Override
public boolean onTouchEvent(MotionEvent event) {
// TODO Auto-generated method stub
mIsTextEditor=false;
Boolean mOnTouchEvent=super.onTouchEvent(event);
mIsTextEditor=true;
return mOnTouchEvent;
} }
Note: You need to add this.getWindow().setSoftInputMode(WindowManager.LayoutParams.SOFT_INPUT_STATE_ALWAYS_HIDDEN);
on your activity or else keyboard
will popup at first time.
回答17:
As some answer mention it, if you disable the editText he become gray and if you set focusable false the cursor is displaying.
If you would like to do it only with xml this did the trick
<YourFloatLabel
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@+id/view_ads_search_select"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:focusable="true"
android:clickable="true"/>
</YourFloatLabel>
I simply add a FrameLayout appear above the editText and set it focusable and clickable so the editText can't be click.
回答18:
This works for me:
android:focusable="false"
回答19:
Today I still use editable="false"
, but also with focusable="false"
.
I think the case we need to make an EditText un-editable, is because we want to keep its EditText style (with that underline, with hint, etc), but it accepts other inputs instead of text. For example a dropdown list.
In such use case, we need to have the EditText
clickable (thus enabled="false"
is not suitable). Setting focusable="false"
do this trick, however, I can still long hold on the EditText and paste my own text onto it from clipboard. Depending on your code and handling this can even crash your app.
So I also used editable="false"
and now everything is great, except the warning.
回答20:
you can use android:focusable="false"
but also need to disable cursor otherwise
copy/paste function would still work.
so, use
android:focusable="false"
android:cursorVisible="false"
回答21:
There are multiple was how to achieve multiple levels of disabled.
editText.setShowSoftInputOnFocus(false);
and editText.setFocusable
prevents the EditText
from showing keyboard - writing in some text. But cursor is still visible and user can paste in some text.
editText.setCursorVisible(false)
hides the cursor. Not sure why would you want to do that tho. User can input text & paste.
editText.setKeyListener(null)
I find this way most convenient. There is no way how user can input text, but widget still works with OnClickListener
if you want to trigger action when user touches it
editText.setEnabled(false);
completely disables EditText
. It is literally 'read-only', user cannot input any text in it and (for example) OnClickListener
doesn't work with it.
TextEdit documentation
回答22:
From @Asymptote's comment on the accepted answer, use:
myEditText.setEnabled(false);
myEditText.setInputType(InputType.TYPE_NULL);
...and Bob's your uncle.
回答23:
Set this in your XML code, It works.
android:focusableInTouchMode="false"