0
我有一個內部自定義視圖設置和該部分似乎是完美的工作 - 我想知道的是...是否有可能限制自定義視圖的高度類似於沿着Swing的線條,在邊界佈局的中心有一個滾動窗格,在邊界佈局的南邊有另一個面板。安卓自定義滾動視圖與底部的廣告
我在北方4層文本的意見,在該中心,然後我的自定義滾動視圖,我想這個應用程式的底部
我試圖在XML做以下3個保持不變: (僞XML - 刪除最爲了可讀性)
1.
<LinearLayout ...> // vertical
<TextView ...></TextView>
<LinearLayout ...> // horizontal
<TextView ...></TextView>
<TextView ...></TextView>
<TextView ...></TextView>
<TextView ...></TextView>
</LinearLayout>
<ScrollView...>
<LinearLayout ...>
<view class="blah.blah.blah.CustomView" ...>
</view>
</LinearLayout>
</ScrollView>
<RelativeLayout ...>
<com.google.ads.AdView ... />
</RelativeLayout>
</LinearLayout>
2.
<LinearLayout ...> // vertical
<TextView ...></TextView>
<LinearLayout ...> // horizontal
<TextView ...></TextView>
<TextView ...></TextView>
<TextView ...></TextView>
<TextView ...></TextView>
</LinearLayout>
<ScrollView...>
<LinearLayout ...>
<view class="blah.blah.blah.CustomView" ...>
</view>
<RelativeLayout ...>
<com.google.ads.AdView ... />
</RelativeLayout>
</LinearLayout>
</ScrollView>
</LinearLayout>
3.
<LinearLayout ...> // vertical
<TextView ...></TextView>
<LinearLayout ...> // horizontal
<TextView ...></TextView>
<TextView ...></TextView>
<TextView ...></TextView>
<TextView ...></TextView>
</LinearLayout>
<ScrollView...>
<LinearLayout ...>
<view class="blah.blah.blah.CustomView" ...>
</view>
</LinearLayout>
</ScrollView>
</LinearLayout>
<LinearLayout ...>
<com.google.ads.AdView .../>
</LinearLayout>
任何幫助,以什麼我可以做,使這項工作將不勝感激
不幸的是,當我嘗試這樣做滾動視圖完全消失 - 我也試過以下鏈接http://stackoverflow.com/questions/5380383/how-to -get-ad-to-show-at-bottom-of-screen-without-overlap並且看到相同的事情發生,不太確定我在做什麼錯誤 –
對不起,延遲。很難說沒有看到整個佈局,所以我包含了一個真正的佈局,適合我。保存/取消欄固定在底部(不管屏幕大小/方向),因爲ScrollView總是擴展到它可用的全尺寸(即使內容很短,感謝android:fillViewport =「true」)。 –