私の問題は、テキストの編集で設定されたフォント、テキストのサイズ、テキストの色、太字、斜体、下線などのテキストスタイルを使用して、編集テキストから正確なテキストを取得したいことです。
今まで私はこのように Spannable を使用し、この Spannable messageText;
ように EditText からテキストを取得しました
messageText = editText.getText();
そしてテキストビューに設定
textView.setText(messageText);
ただし、この場合、単純な文字列 not のみを返しますcolor,font,size and style
。
EditText
<EditText
android:id="@+id/message"
android:layout_width="fill_parent"
android:layout_height="180dp"
android:inputType="textMultiLine"
android:singleLine="false"
android:tag="no"
android:textColor="#000000"
android:textSize="15sp"
android:textStyle="normal"
android:typeface="normal" />
TextView
<TextView
android:id="@+id/preview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text=""
android:textColor="#000000"
android:textSize="15sp"
android:textStyle="normal"
android:typeface="normal" />
助けて、ありがとう