如何在侧面列表视图项android中叠加布局?

时间:2014-03-28 03:02:08

标签: android android-layout android-listview android-overlay

我有一个由BaseAdapter备份的ListView。我正在使用的布局是RelativeLayout,其中一些TextViews和ImageViews呈现正常。问题是我想覆盖花药布局与选择列表视图项的顶部匹配父高度和宽度,背景颜色透明。怎么做?

  

enter image description here

1 个答案:

答案 0 :(得分: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>