Android VideoView setAlpha()方法,如ImageView setAlpha()

时间:2013-12-27 09:14:40

标签: android sdk android-videoview

Android ImageViewsetAlpha(float)方法,但我知道android videoView没有setAlpha()方法,因为android videoviewsurfaecview

如何在setAlpha()之类的VideoView中实现imageview功能。

1 个答案:

答案 0 :(得分:1)

你可以这样做:

....
  <RelativeLayout
   android:layout_width="200dp"
   android:layout_height="200dp">

      <VideoView
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         .../>

      <View
         android:layout_width="match_parent"
         android:layout_height="match_parent"
         android:background="#ffffff"
         android:alpha=".5"
              />

  </RelativeLayout>
....