Android: 如何在 YouTubeThumbnailView 上添加播放按钮

Android: How to add play button on YouTubeThumbnailView

我已经毫无问题地实现了 youtubeThumnailView。

目前我的缩略图在 android phone 上看起来像这样:

但是我如何在缩略图视图上添加一个播放按钮,就像这样https://lh4.googleusercontent.com/-c06CilFxXA8/TW3qUN4WTBI/AAAAAAAAAIU/6UaNpVuAt5w/s1600/webView+with+play+button.png

您需要:

  1. 将您的 youtubeThumnailView 置于布局中(例如 RelativeLayout)

  2. 在 youtubeThumnailView 上添加 Button 或 ImageView

示例:

    <RelativeLayout
        android:layout_width="wrap_content"
        android:layout_height="wrap_content" >

        <!-- ImageView or your youtubeThumnailView -->
        <ImageView
            android:id="@+id/iv_youtube_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="fitCenter"
            android:src="@drawable/profile_img_default" />

        <!-- ImageView of your button -->
        <ImageView
            android:id="@+id/iv_button"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:src="@drawable/profile_img_capture" />

    </RelativeLayout>