我一直在尝试为 Android 制作带有小底部和右侧栏的布局,屏幕的其余部分应该是相对布局。但是,我仍然得到这样的东西
我想让两个“浅橙色”条都位于底部/右边框,其余的应该填充图像或视频。
Bellow是我的代码,你能帮我找出错误吗?
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:weightSum="1.0" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.8333"
android:layout_gravity="top"
android:weightSum="1.0" >
<RelativeLayout
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="left"
android:layout_weight="0.8333">
<VideoView
android:id="@+id/videoView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_alignParentRight="true"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:layout_alignParentBottom="true"/>
<ImageView
android:id="@+id/imageView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:scaleType="fitCenter"
android:contentDescription="@string/hello" />
</RelativeLayout>
<ImageView
android:id="@+id/rightImage"
android:layout_width="wrap_content"
android:layout_height="fill_parent"
android:layout_gravity="right"
android:layout_weight="0.1667"
android:contentDescription="@string/hello"/>
</LinearLayout>
<ImageView
android:id="@+id/bottomImage"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="0.1667"
android:layout_gravity="bottom"
android:contentDescription="@string/hello"/>
</LinearLayout>
提前感谢您的帮助。
米兰