Hi i have a linear layout which i'm using as a bottom bar in a listview and when zips are pressed i show the layout and hide it at other times. I decided it would look nicer to slide it up so i wrote the following and an animation xml which all works well. However when it slides in it shows a black background where the layout is sliding into. How can i change that background to show as transparent so the listview shows and the layout slides over the listview rather than a black background.
LinearLayout mainLayout=(LinearLayout)this.findViewById(R.id.bottombar);
Animation slideUp = AnimationUtils.loadAnimation(this, R.anim.slide_up_in);
mainLayout.startAnimation(slideUp);
mainLayout.setVisibility(LinearLayout.VISIBLE);
Thanks for any help
===Edit===
Screen shots of what's happening
This is the list view before a zip is selected

This is it right before the slide (white background now changed the activity theme to light)

And this is it mid slide (sorry about the toast)
