0

您是否介意指出 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>

谢谢

4

1 回答 1

0

我认为您所做的没有任何问题,但是您不会注意到 linearLayout 中的任何内容,因为它不包含任何内容。

为了演示它,请尝试为 linearLayout 设置背景,例如:

android:background="#88ff000000"
于 2012-05-27T21:02:40.777 回答