While saving data from textview, CR LF is storing like hex value 0x0d0a. But while showing same data in another text view which is inside list view, not showing return space for 0x0d0a. Instead of that it is directly printing /0x0d0a. Any help here.
Thanks in advance. — Raghav
While saving data from textview, CR LF is storing like hex value 0x0d0a. But
Share
Got resolved today. Text view shows return space only for \n. Replacing /0x0d0a with \n solved the issue. Thanks !!