2012-05-14 65 views
0

我將Horizo​​ntalScrollView與RelativeLayout作爲子項。這裏是我的xml文件:Android:Horizo​​ntalScrollView包裝它的孩子?

<?xml version="1.0" encoding="utf-8"?> 
<HorizontalScrollView xmlns:android="http://schemas.android.com/apk/res/android" 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="#ff00ff" 
    android:scrollbars="none"> 

<RelativeLayout 
    android:layout_width="fill_parent" 
    android:layout_height="fill_parent" 
    android:background="#ffffff" > 
</RelativeLayout> 

</HorizontalScrollView> 

輸出粉紅色......但我需要白色的...爲什麼相對佈局不填充它的父?

截圖: enter image description here

截圖帶有按鈕:enter image description here

+0

請清除烏爾闕的孩子補充的嗎? 你想要什麼輸出? – MAC

+0

當你看這個XML時,你如何看待輸出結果?用什麼顏色屏幕? – Jim

+0

屏幕將顯示粉紅色......現在告訴我你的輸出,你想得到什麼輸出? – MAC

回答

0

正如你所看到的,當你把按鈕放在你是不匹配的滾動視圖。嘗試使用LinearLayout作爲你的父母,然後有滾動視圖作爲一個孩子match_parent,然後在其他佈局滾動視圖的match_parent

相關問題