How can I hide the EditText underbar (the prompt line with little serifs at the ends)? There might be a better way to do what I want: I have...
  • April 30, 2022
  • 0 Comments
In XML, we can set a text color by the textColor attribute, like android:textColor="#FF0000". But how do I change it by coding? I tried something like: holder.text.setTextColor(R.color.Red); Where holder...
  • April 30, 2022
  • 0 Comments
I have simple HTML: <h2>Title</h2><br> <p>description here</p> I want to display HTML styled text it in TextView. How to do this? 28 s 28 You need to use Html.fromHtml()...
  • April 19, 2022
  • 0 Comments
I am displaying text in a TextView that appears to be too long to fit into one screen. I need to make my TextView scrollable. How can I do...
  • April 19, 2022
  • 0 Comments