I am having trouble while displaying a string in textview
policyValTv.setText(": " +trimPolicyNo);
Problem is if the trimPolicyNo is a long string, then the textview(policyValTv) displays the whitespace but breaks the line and displays the actual string on the next line. How can I avoid this? I want to display all on one line but not keep singleLine = true. Please help