2

ここで問題に直面しています。EditText にテキストと一緒に画像を追加したいのですが、いろいろ検索した結果、テキスト付きの画像を追加できないという結論に達しました。UPTILL editTextでテキストに画像を追加するはずのこのコードを取得しました。

ImageSpan imageSpan = new ImageSpan(getResources().getDrawable(R.drawable.ic_action_emo_angry));
            SpannableStringBuilder builder = new SpannableStringBuilder();
            builder.append(input.getText());
            String imgId = "[img=1]"; 
            int selStart = input.getSelectionStart();

            // current selection is replaceв with imageId
            builder.replace(input.getSelectionStart(), input.getSelectionEnd(), imgId);
            builder.setSpan(imageSpan, selStart, selStart + imgId.length(), Spannable.SPAN_EXCLUSIVE_EXCLUSIVE);
            input.setText(builder);

しかし、試してみると、うまくいきませんでした。それを行う方法はありますか?ありがとう。

4

1 に答える 1