Is it possible in Android to insert an image in a TextView and align the text like this image below ?
Thank you in advance!
Is it possible in Android to insert an image in a TextView and align the text like this image below ?
Thank you in advance!
If I remember correctly there are really only two ways to do this in android.
Create an HTML asset and inject your data to the webview. (Obviously not what you are looking for.
Create a Spannable object with an ImageSpan.
Route two is probably more what you are looking for.
EDIT Looking further into it it appears that ImageSpans can only Bottom or Baseline-Align with the text. And since you are specifically asking about a TextView. No what you are asking is not possible with a TextView from my understanding.