Android Question "FORCEDONEBUTTON=FALSE not working

Tejwant Navalkar

Member
Licensed User
Longtime User
I have created three edittext objects on a form. The first and second have "ForcedDoneButton " as FALSE and the third one has TRUE. Yet when I run the code, I get a Done tick on the first editbox, next tick on second and done on third. I have also put these specific commons in Activity_Create as well.
EditText1.ForceDoneButton = FALSE
EditText2.ForceDoneButton = FALSE
EditText3.ForceDoneButton = TRUE

Can someone please explain what is going wrong.
 

RandomCoder

Well-Known Member
Licensed User
Longtime User
The ForceDoneButton property is for the done button on the keyboard. I don't think it has any bearing on the tick mark for the edittext, I wasn't even aware that edittext had completion tick marks but maybe that's a Android version specific thing?
 
Upvote 0
Top