Is there any way to make EditView to work sometimes as itself and sometimes as TextView (readonly, but not grayed (when I set setEnabled(false)
it becomes gray which I dont like). Simply I would like to use the same form for displaying information and for editing and as for now the only solution which comes to my mind is to have two components and to play with visibility parameter of them (sometimes EditView is visible and TextView not and vice versa).
And is there any possibility to have few lines in one TextView? When I wrote
android:text="bla bla \n bla bla"
in xml code it doesn't work. :(