我需要设计一个与下面给出的图片相同的布局。我尝试了三个linearlayout,在第一个linearlayout中我必须添加一个图像作为“标题”,第二个作为VideoView,第三个作为Footer。但页脚图像也不会在模拟器和设备中显示。那么我该如何解决呢?任何帮助都会非常明显。感谢
这是xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="fill_parent" android:layout_width="match_parent"
android:orientation="vertical">
<LinearLayout android:id="@+id/linearLayout3"
android:layout_width="match_parent" android:layout_height="wrap_content"
android:background="@drawable/header" android:orientation="vertical"></LinearLayout>
<LinearLayout android:id="@+id/linearLayout2"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="150dp">
<VideoView android:id="@+id/videoView1"
android:layout_width="fill_parent" android:layout_height="wrap_content"
android:keepScreenOn="true" android:fitsSystemWindows="true"></VideoView>
</LinearLayout>
<LinearLayout android:id="@+id/linearLayout1"
android:orientation="vertical" android:layout_height="wrap_content"
android:layout_width="match_parent" android:background="@drawable/footer"></LinearLayout>
</LinearLayout>
答案 0 :(得分:2)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<LinearLayout android:layout_height="wrap_content" android:id="@+id/linearLayout1" android:layout_width="fill_parent">
<TextView android:id="@+id/textView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="HEADER"></TextView>
</LinearLayout>
<VideoView android:id="@+id/videoView1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_below="@+id/linearLayout1"></VideoView>
<LinearLayout android:layout_alignParentTop="@+id/videoView1" android:layout_alignParentBottom="true" android:layout_height="wrap_content" android:id="@+id/linearLayout2" android:layout_width="fill_parent">
<TextView android:id="@+id/textView2" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="FOOTER"></TextView>
</LinearLayout>
</RelativeLayout>
尝试使用相对布局。
在此片段中,您可以将标题放在视频上方,但对于页脚,我不确定尝试保持视频视图的上方,就像默认视频播放器所做的那样。