私はあなたに疑似レイアウトを与えます:
<RelativeLayout>
<TextView
full width
id:infobox/>
<Button
layoutParentRight
below infobox/>
<TextView
layout_below infobox
toLeftOf button/>
// repeat the textView above and always below the previous one
</RelativeLayout>
LinearLayoutsの場合:
<LinearLayout>
<TextView infobox/>
<LinearLayout>
<LinearLayout>
<TextView />
<TextView />
<TextView />
</LinearLayout>
<Button/>
</LinearLayout>
</LinearLayout>
ご覧のとおり、それははるかに複雑で肥大化しています。私はいつも水平/垂直の向きで混乱するので、これをあなたに任せて調べます:)実験してみて、うまくいかない場合は、試したレイアウトで答えを更新してください。