我有这个TextView
:
<TextView
android:id="@+id/issue_journal_item_notes"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignLeft="@+id/issue_journal_item_details"
android:layout_below="@+id/issue_journal_item_details"
android:background="@drawable/journal_item_notes_background"
android:padding="8dp"
android:text="issue_journal_item_notes"
android:textIsSelectable="true" />
我正在填写:
String html = "<p>Hi,<br/>Do you think you could get a logcat during the crash? That seems really strange, especially the fact that it makes Android reboot.<br/>You can get the SDK here: http://developer.android.com/sdk/index.html<br/>(needed for logcat)</p>";
theTextView.setText(Html.fromHtml(html));
这导致:
“受让人...”是另一个TextView
。
我TextView
的是灰色背景的。非常浅的灰色可以清楚地看到它的边界。左边的深灰色条是背景的一部分,所以它也是TextView
我们可以清楚地看到 8dp 方形填充。但是,底部的空白空间是什么?这是某种填充,但我没有在 XML 或代码中设置它!
如果有人问,我需要HTML 支持,因为与上面显示的屏幕截图不同,内容可能包含一些 HTML 内容(<pre>
、<i>
、<b>
等)。