私はこれを持っています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));
これにより、次の結果が得られます。

「Assignee ...」は別のTextView. 
私TextViewは灰色の背景を持つものです。その境界は非常に薄い灰色ではっきりと見えます。左側の暗い灰色のバーは背景の一部であるため、TextView
8 dp の正方形のパディングがはっきりとわかります。しかし、一番下の空きスペースは何ですか?これはある種のパディングですが、XML でもコードでも設定していません。
上のスクリーンショットとは異なり、コンテンツに HTML コンテンツ ( 、、など)が含まれている可能性があるため、HTML サポートが必要です。<pre><i><b>