Top "Spannable" questions

An Android Spannable is an interface for text to which markup objects can be applied.

TextView with different textSize

Is this possible to set different textSize in one TextView? I know that I can change text style using: TextView …

android textview spannable
How set Spannable object font with custom font

I have Spannable object which I want to set its font by a custom font I have loaded before. Typeface …

android android-fonts spannable
spannable on android for textView

Tweet o = tweets.get(position); TextView tt = (TextView) v.findViewById(R.id.toptext); //TextView bt = (TextView) v.findViewById(R.id.…

java android twitter spannable
SpannableString with Image example

I am looking for an example of how to build and display Android SpannableString with ImageSpan. Something like inline display …

android spannable imagespan
How to get rid of the underline in a Spannable String with a Clickable Object?

I have a Spannable Object with a Clickable Object set to it. When the Spannable String is displayed in the …

android textview spannable
SpannableString: Is it possible to apply two or more RelativeSizeSpans?

I am trying to construct a SpannableString such that it looks like this: Two characters (m, s) should be smaller …

android spannablestring spannable
Align text around ImageSpan center vertical

I have an ImageSpan inside of a piece of text. What I've noticed is that the surrounding text is always …

android text spannable imagespan
How to merge some spannable objects?

I divide a spannable object into 3 parts, do different operations, and then I need to merge them. Spannable str = editText.…

android spannable charsequence
How to click or tap on a TextView text on different words?

How to move to another view by click on text view with two different words. this is the string i …

android textview spannable
Android Development: How To Replace Part of an EditText with a Spannable

I'm trying to replace part of an Editable returned from getText() with a span. I've tried getText().replace() but that's …

android replace spannablestring spannable