【发布时间】:2014-10-30 15:59:38
【问题描述】:
我正在并排使用 VideoView 和 TextView,两个小部件都占用了我给使用的正确空间,但问题是视频没有显示应有的大小。
activity_main.xml:-
<FrameLayout
android:id="@+id/video_frame"
android:layout_width="690dp"
android:layout_height="300dp">
<VideoView
android:id="@+id/VideoView"
android:layout_width="fill_parent"
android:layout_height="fill_parent" />
;;;;;;;;;;
</FrameLayout>
【问题讨论】:
-
这里您已经为
LinearLayout应用了android:layout_weight="2",所以只需将其width设置为0而不是fill_parent。 -
@X'Factor 你的意思是而不是 match_parent
-
@X'Factor 甚至没有显示我拥有这两个小部件(videoview 和 textview)的完整线性布局
标签: java android xml android-videoview aspect-ratio