我的应用程序有视频。
我可以在视频上设置按钮,但我可以把它放在图像视图中。
布局:
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<VideoView android:id="@+id/video_view"
android:layout_width="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_height="fill_parent">
</VideoView>
<Button
android:id="@+id/button1"
android:layout_width="280dp"
android:layout_height="wrap_content"
android:layout_marginBottom="22dp"
android:background="@drawable/button"
android:text="@string/login"
android:layout_above="@+id/button2"
android:layout_alignLeft="@+id/button2"
android:layout_alignStart="@+id/button2" />
<Button
android:id="@+id/button2"
android:layout_width="280dp"
android:layout_height="wrap_content"
android:layout_marginBottom="109dp"
android:background="@drawable/button"
android:text="@string/signup"
android:layout_alignParentBottom="true"
android:layout_centerHorizontal="true" />
活性: My Activity.txt
我想在视频上放置徽标。我该怎么办呢?
答案 0 :(得分:2)
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<VideoView
android:id="@+id/yourVideoViewId"
android:layout_width="match_parent"
android:layout_height="match_parent"/>
<ImageView
android:id="@+id/yourImageViewId"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@mipmap/ic_launcher"/>
</FrameLayout>
试试这个
答案 1 :(得分:0)
我用android:background item解决了这个问题。
<VideoView android:id="@+id/video_view"
android:layout_width="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_height="fill_parent"
android:background="@drawable/pngname">