Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am beginner in android . I want to overlay a image on webview . I use the Framelayout with webview and imageview .It works correctly. But when the videos are played in the webview the image is not displayed. how to display a image inside a player ? I mentioned my code below . please help me

<FrameLayout 
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:padding="0dp"
    android:layout_margin="0dp">

<WebView
    android:id="@+id/webview"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:layout_margin="0dp"
    android:padding="0dp" 
    android:scaleType="center"/>

 <ImageView
     android:id="@+id/imageview"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_gravity="center_horizontal|center"
     android:contentDescription="@string/webviewexample"
     android:src="@drawable/image"/>

</FrameLayout >
share|improve this question
2  
use Relative layout.It will work – AppMobiGurmeet Oct 30 '12 at 11:37
It works fine .I play the video in webview .but the image is not displayed inside a player .but the image is displayed at outside a player .It is possible to display a image in the players? – user1597094 Oct 30 '12 at 11:43
please follow stackoverflow.com/questions/4901408/… – AppMobiGurmeet Oct 30 '12 at 11:50
Thanks.It is useful – user1597094 Oct 30 '12 at 11:55
you are welcome dear – AppMobiGurmeet Oct 30 '12 at 11:56

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.