我有EditText,我在我的活动中有ImageSpan我有图像视图,当从图库中选择一张图片进入imageView然后当我点击图片视图时图像转到编辑文本现在我的问题就是说我在7张图片上并排添加了6张图片,它转到编辑文本的第二行但是第一行的6张图片消失了。我试图在图片编号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);
答案 0 :(得分:0)
您是否尝试阻止editext包装?
android:maxLines="1"
android:lines="1"
android:scrollHorizontally="true"