How to underline text in TextView?
Solution:
SpannableString contentUnderline = new SpannableString("https://technotalkative.com/"); contentUnderline.setSpan(new UnderlineSpan(), 0, contentUnderline.length(), 0); TextView mPage = (TextView) findViewById(R.id.page); mPage.setText(contentUnderline);