我在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
如果 width 和 height 都设置为是什么意思fill_parent
?
根据文档,这不应该起作用,或者更准确地说,如果两者layout_height
和layout_width
都被设置为0dp
,那么将layout_weight
被忽略。但是,在此示例中,如果android:layout_weight="1"
没有ScrollView
.