gpt4 book ai didi

android - android应用程序中的VideoView全屏

转载 作者:IT老高 更新时间:2023-10-28 22:18:58 26 4
gpt4 key购买 nike

我的应用程序中有一个视频 View 。代码是这样的。

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

<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/opsbuds"
android:orientation="vertical">

<TextView
android:id="@+id/adtxt1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="TextView"></TextView>

<VideoView
android:id="@+id/videoView11"
android:layout_width="300dip"
android:layout_height="250dip"
android:layout_marginLeft="30dip"></VideoView>

<LinearLayout
android:id="@+id/llv11"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="vertical"></LinearLayout>

<Button
android:id="@+id/button1211"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:layout_marginTop="10dp"
android:background="@drawable/button"
android:text=" Continue "
android:textColor="#800080"
android:textSize="20dp"
android:textStyle="bold"></Button>
</LinearLayout>
</ScrollView>

在 xml 文件中提到了视频 View 的宽度和高度。我想要的是,一旦我按下一个按钮,videoview 应该全屏显示,一旦我按下返回按钮,videoview 应该回到它提到的大小。请帮忙?

最佳答案

我必须让我的 VideoView 位于 RelativeLayout 中才能使选择的答案起作用。

<?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">

<VideoView android:id="@+id/videoViewRelative"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_alignParentRight="true"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
</VideoView>

</RelativeLayout>

这里给出:Android - How to stretch video to fill VideoView area在屏幕尺寸之间切换就像更改所选答案中给出的布局参数一样简单。

关于android - android应用程序中的VideoView全屏,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11310764/

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