0

皆さん、こんにちは。Android の setSpan メソッドを使用してスタイル設定するように設定した編集テキストに、たくさんのテキストがあります (今のところ取り消し線を引く)。これはうまくいくようです。

私が抱えている問題は、そのアクティビティを閉じると、すべてのスタイリングがキャンセルされたように見えることです。アクティビティを再度ロードすると、プレーン テキストのみが表示され、setSpan() を使用して適用したスタイルは適用されません。

注: すべてのテキストはデータベースに保存されます。

スタイリング用のすべてのコードを添付しました。これ以上のコードが必要な場合はお知らせください。

     private void doStrick() {

    int selectionStart = mBodyText.getSelectionStart();
    styleStart = selectionStart;
    int selectionEnd = mBodyText.getSelectionEnd();
    // check for boo-boo's 
    if (selectionStart > selectionEnd){
        int temp = selectionEnd;
        selectionEnd = selectionStart;
        selectionStart = temp;
    }
    Spannable str = mBodyText.getText();
    str.setSpan(new StrikethroughSpan(),selectionStart, selectionEnd, Spannable.SPAN_INCLUSIVE_INCLUSIVE);
    }

スタイリングを保存するために追加する必要があるコードはありますか?

答えに基づいて編集:

    Calendar cal=Calendar.getInstance();
    String date_time=String.format("%1$te %1$tB %1$tY,%1$tI:%1$tM:%1$tS %1$Tp",cal);
    float Textsize = mBodyText.getTextSize();
    String title = mTitleText.getText().toString();
    String body = Html.toHtml(mBodyText.getText());

    if (mRowId == null) {
        long id = mDbHelper.createNote(title, body, date_time, Textsize);

        if (id > 0) {
            mRowId = id;
        }
    } else {
        mDbHelper.updateNote(mRowId, title, body, date_time, Textsize);
        Log.d("MYTAG", "updateing note");
        updateWidget();

そして、フィールドにデータを入力する場所:

   Cursor note = mDbHelper.fetchNote(mRowId);
        startManagingCursor(note);
        mTitleText.setText(note.getString(
                note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TITLE)));
        mBodyText.setText(Html.fromHtml(note.getString(
                note.getColumnIndexOrThrow(NotesDbAdapter.KEY_BODY))));
        mBodyText = (EditText) findViewById(R.id.body);
        float size =                 note.getFloat(note.getColumnIndexOrThrow(NotesDbAdapter.KEY_TEXT_SIZE));
        mBodyText.setTextSize(TypedValue.COMPLEX_UNIT_PX, size);
4

1 に答える 1