Convert ImageSpan sample code to Java

Bug: 127617625
Test: make offline-sdk-docs
Change-Id: I74a79fa6f0adc650d175cca3caa61c37df20df38
This commit is contained in:
Haoyu Zhang
2019-03-06 15:01:02 -08:00
parent b54aa3d9ae
commit 924d93bb31

View File

@@ -46,10 +46,10 @@ import java.io.InputStream;
* <p>
* For example, an <code>ImagedSpan</code> can be used like this:
* <pre>
* SpannableString string = SpannableString("Bottom: span.\nBaseline: span.");
* SpannableString string = new SpannableString("Bottom: span.\nBaseline: span.");
* // using the default alignment: ALIGN_BOTTOM
* string.setSpan(ImageSpan(this, R.mipmap.ic_launcher), 7, 8, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
* string.setSpan(ImageSpan(this, R.mipmap.ic_launcher, DynamicDrawableSpan.ALIGN_BASELINE),
* string.setSpan(new ImageSpan(this, R.mipmap.ic_launcher), 7, 8, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
* string.setSpan(new ImageSpan(this, R.mipmap.ic_launcher, DynamicDrawableSpan.ALIGN_BASELINE),
* 22, 23, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
* </pre>
* <img src="{@docRoot}reference/android/images/text/style/imagespan.png" />