Linearlayout の背景に問題があります。問題は、LinearLayout の背景を画像として設定していることです。画像サイズが高さ 300 px だとしましょう。この LinearLayout は、行などの他のビューを保持します。1 行の高さは 100 ピクセルです。問題は、この LinearLayout に行を追加すると、行が 300 ピクセルのうち 100 ピクセルしか満たされないことです。問題は、子ビューがどれだけ発生するかに応じて、 LinearLayout をストレッチまたはスケーリングすることは可能ですか?
LinearLayout のコード:
<LinearLayout
android:id="@+id/companies_list_holder"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginRight="10dp"
android:layout_marginLeft="10dp"
android:background="@drawable/firm_list_background"
android:orientation="vertical" />