の下に広告レイアウトがありScrollView
ます。ScrollView
広告レイアウトの重複を防ぐために、私は使用する必要があります
<ScrollView
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_weight="1" // <--- THIS!
>
//...scrollview content
</ScrollView>
<include layout="@layout/ads_468x60"/>
layout_weight
幅と高さの両方がに設定されている場合の意味は何fill_parent
ですか?
ドキュメントによると、これは機能しないはずです。正確には、両方layout_height
とlayout_width
が以外0dp
に設定されている場合layout_weight
は無視されます。android:layout_weight="1"
ただし、この例では機能し、下部の広告レイアウトは、内に属性がないと表示されませんScrollView
。