I don't know why it doens't work. My TextView
already set lines=6. String is set in code, like this :
address.setText((String) bundle.get("address"));
Above code still display \n
as String not new line. bundle.get("address")
is retrieved from .dat
which is "line1\nline2" file store in asset
But when i try this :
address.setText("line1\nline2");
this code works fine.
Any idea what gone wrong here? Thanks in advance