2014-03-28 71 views
1

我有一個由BaseAdapter備份的ListView。我使用的佈局是一個RelativeLayout,其中一些TextViews和ImageViews渲染正常。問題是,我想覆蓋與選擇列表視圖項目的頂部與匹配父高度和寬度,以及背景顏色透明。怎麼做 ?如何覆蓋側列表視圖項android中的佈局?

enter image description here

+1

您可以嘗試使用''來包裝要覆蓋的兩個視圖。 –

回答

4

你的根佈局必須FrameLayout裏。

<FrameLayout> 

    <RelativeLayout> 
     <!-- This is your existing relative layout --> 
    <RelativeLayout> 



    <AnyLayoutHere> 

     <!-- This will be your overlay that you can hide or show --> 
    </AnyLayoutHere> 



</FrameLayout>