Xml hiding view

wavaddertaist

New Member
with the xml below i am trying to show a background image while audio is playing, problem is i can't see the background image, it's covered by a black screen of the player...thanks!Edit\[code\] <?xml version="1.0" encoding="UTF-8"?><RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/containerView" android:background="@android:color/transparent" android:layout_width="fill_parent" android:layout_height="fill_parent"> <FrameLayout android:layout_width="fill_parent" android:layout_height="fill_parent" android:background="#90ffffff" > <VideoView android:id="@+id/videoView" android:layout_height="wrap_content" android:layout_width="wrap_content" > </VideoView> </FrameLayout> </RelativeLayout>\[/code\]
 
Back
Top