您是否介意指出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>
由于
答案 0 :(得分:0)
我认为你做了什么没有错,但你不会注意到linearLayout中的东西,因为它不包含任何东西。
为了演示它,请尝试为linearLayout设置背景,例如:
android:background="#88ff000000"