I have a Text view that has a max width of (200 dp). And I have a string that varies in length.
Example
Lets say that the string is this:
String example= "this is a test string";
question:
I want to know if is it possible to check if the length of the string is equal to the text view's maximum width?
Thank you.