单击按钮时android videoview全屏
Posted
技术标签:
【中文标题】单击按钮时android videoview全屏【英文标题】:android videoview fullscreen when click button 【发布时间】:2012-05-28 10:58:14 【问题描述】:我想在单击按钮时全屏显示视频。然后在全屏运行时返回旧尺寸的视频!
我该怎么做?
<LinearLayout
android:layout_
android:layout_
android:layout_alignParentLeft="true"
android:layout_below="@+id/linearLayout1"
android:gravity="center_horizontal"
android:orientation="vertical" >
<WebView
android:id="@+id/Web"
android:layout_
android:layout_
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:layout_marginTop="2dp"
android:background="@drawable/screen_background" />
<VideoView
android:id="@+id/videoView1"
android:layout_
android:layout_
android:layout_marginTop="3dp" />
【问题讨论】:
你为什么使用 webview?你的按钮代码在哪里? 不关心 webview... 我在 webview 中显示 html 代码。 【参考方案1】:您将在 relativelayout 中声明 videoview 如下,我认为您的问题将得到解决。
<VideoView android:id="@+id/myvideoview"
android:layout_
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"
android:layout_>
</VideoView>
将该活动的主题...设置为
android:theme="@android:style/Theme.NoTitleBar.Fullscreen"
【讨论】:
以上是关于单击按钮时android videoview全屏的主要内容,如果未能解决你的问题,请参考以下文章