gpt4 book ai didi

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

转载 作者:太空狗 更新时间:2023-10-29 16:35:07 25 4
gpt4 key购买 nike

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

目前我的缩略图 View 在 Android 手机上看起来像这样: enter image description here

但是我如何在缩略图 View 上添加一个播放按钮,就像这样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>

关于Android:如何在 YouTubeThumbnailView 上添加播放按钮,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30678070/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com