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>
ありがとう