How to lose margin/padding in UITextView
I have a UITextView in my iOS application, which displays a large amount of text. I am then paging this text by using the offset margin parameter of the UITextView. My problem is that the padding o...
stackoverflow.com
B4X:
Dim no As NativeObject = tv_TextView
no.RunMethod("textContainer",Null).SetField("lineFragmentPadding",0)
B4X:
Dim no As NativeObject = tv_TextView
no.SetField("textContainerInset",0)