RhinoCan
Well-Known Member
My app wants to display a record from a RecyclerView to the user to confirm that the user wants to delete it. I simply want to display the five facts from the sale item - client code, order number, order date, tickets sold, and seller name - to the user on a screen, with each fact prefixed by a label. Then, the user needs to either press the Remove button to confirm the delete or press the Cancel button to abort the delete.
I am having a lot of trouble finding some way to make the labels and "facts" so that no one can edit them. I can't find anything in the API that actually works to make the "fact" fields uneditable. (I thought setTextIsSelectable(false) was the answer but it doesn't work. I also tried turning off editable and clickable but that didn't work either.)
Can someone enlighten me on how to prevent the user from changing anything on this screen? The only things they should be able to do is press the Remove or Cancel buttons.
I am having a lot of trouble finding some way to make the labels and "facts" so that no one can edit them. I can't find anything in the API that actually works to make the "fact" fields uneditable. (I thought setTextIsSelectable(false) was the answer but it doesn't work. I also tried turning off editable and clickable but that didn't work either.)
Can someone enlighten me on how to prevent the user from changing anything on this screen? The only things they should be able to do is press the Remove or Cancel buttons.
Last edited: