Top "Textview" questions

Text View is an UI element that allows users to view and/or modify the displayed text.

How can I add gradient effect to background color of TextView in a ListView?

In reference to these questions : Adding gradient effect to TextView in a ListView generates NPE and How to change color …

android gradient textview
Change clickable TextView's color on focus and click?

I have a clickable TextView that I want to give some colors to. But I don't know how. Here are …

android colors onclick textview hyperlink
Android: TextView automatically truncate and replace last 3 char of String

If a String is longer than the TextView's width it automatically wraps onto the next line. I can avoid this …

java android textview
Android TextView : "Do not concatenate text displayed with setText"

I am setting text using setText() by following way. prodNameView.setText("" + name); prodOriginalPriceView.setText("" + String.format(getString(R.string.string_…

android concatenation textview string-concatenation
How can I change the color of a part of a TextView?

text = text + CepVizyon.getPhoneCode() + "\n\n" + getText(R.string.currentversion) + CepVizyon.getLicenseText(); activationText.setText(text); myTextView.setText(text); I want …

android uitextview textview
How to align the text inside the TextView in Android?

I have a multiline TextView in Android. It is a child of a LinearLayout. It is already centered horizontally and …

android textview android-gui
How to programmatically set maxLength in Android TextView?

I would like to programmatically set maxLength property of TextView as I don't want to hard code it in the …

android textview maxlength
Dynamically add textViews to a linearLayout

I read this somewhere here and I totally lost it, but could use some assistance. My app is pulling the …

android textview android-edittext add dynamic
How to add bulleted list to android application?

I have googled my question but there is not working answer provided. How do add a bulleted list to my …

android textview
How do I enable standard copy paste for a TextView in Android?

I want to enable standard copy paste for a TextView (the same as for EditText). How can I do it? …

android textview copy-paste