I wanna have an EditText
which can be updated only programmatically. When I click on it, I will not be able to enter anything, but when I click the button with requestFocus
to this EditText
I want to have that option.
I tried android:focusableInTouchMode="true"
, but in this case, I can't use EditText
when I click button either.
Any ideas?