How to overlap view on ListActivity that has a custom adapter?
I have one ListActivity
on which i want to 开发者_如何转开发overlap one transparent view. Is it possible? If so, how?
You can use the RelativeLayout ViewGroup to overlay views. Pseudocode:
<RelativeLayout ...>
<View main ...>
<View overlay ...>
</RelativeLayout>
For transparency you can call setAlpha(), depending on your needs.
you can do it using framelayout.because framelayout.
精彩评论