您是否介意指出 LinearLayout 元素不拉伸以匹配父元素的原因。这与我使用的项目配置或类名有关吗?我注意到 xmlfile 的名称可能与此问题有关。我不是在开玩笑——几天前我在不同的 xml 文件名上测试相同的代码,它在 LinearLayout 拉伸方面的工作方式不同。这个名为“clip.xml”
<?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"
android:clickable="true" >
<VideoView
android:layout_width="match_parent"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
</FrameLayout>
谢谢