I’m looking for an optimal way to resize wrapping text in a TextView so that it will fit within its getHeight and getWidth bounds. I’m not simply looking for...
  • April 17, 2022
  • 0 Comments
I have the following TextView defined: <TextView android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="@string/txtCredits" android:autoLink="web" android:id="@+id/infoTxtCredits" android:layout_centerInParent="true" android:linksClickable="true"></TextView> where @string/txtCredits is a string resource that contains <a href="some site">Link text</a>. Android is highlighting...
  • April 14, 2022
  • 0 Comments