We can set single line with this
TextView textView = (TextView) view.findViewById(R.id.someTextView);
textView.setSingleLine(true);
But for get status of single line event getSingleLine()
does not exit.
How can check that single line for text view is on (true) or off (false)?
My target API level is 15.