带有图像的诚意



我有dedittext,并且在我的活动中有imagespan,我在从画廊中选择图片时具有图像视图,然后将图像视为映像,然后当我单击图像视图时,图像转到了图像。现在编辑文本我的问题是,假设我在7张图片上并排添加了6张图片,则将其添加到编辑文本的第二行的第二行,但一行的6张图片消失了。我试图按Enter编号6时按Enter,它将进入新线路而不删除图片,但是当它自动进行时,它会消失。

  SpannableStringBuilder builder = new SpannableStringBuilder(txtSpeechInput.getText());
    builder.setSpan(new ImageSpan(drawable), selectionCursor - " ".length(), selectionCursor, Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
    txtSpeechInput.setText(builder);
    txtSpeechInput.setSelection(selectionCursor);

您是否试图防止editext包装?

 android:maxLines="1"
 android:lines="1"
 android:scrollHorizontally="true"

相关内容

  • 没有找到相关文章

最新更新