gpt4 book ai didi

Android 按钮出现在视频 View 中

转载 作者:行者123 更新时间:2023-11-29 17:57:36 25 4
gpt4 key购买 nike

如何让按钮位于视频 View 的顶部而不是其上方?这是代码:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
>

<Button
android:id="@+id/btnHD"
style="@style/btnStyleGenoa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Turn HD On" />

<VideoView
android:id="@+id/videoView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" />
</LinearLayout>

非常感谢

最佳答案

你可以简单地使用这个:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >

<VideoView
android:id="@+id/videoView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal" />

<Button
android:id="@+id/btnHD"
style="@style/btnStyleGenoa"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="17dp"
android:text="Turn HD On" />

关于Android 按钮出现在视频 View 中,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18233585/

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