我是Android平台上的新手。我正在尝试创建一个将屏幕分为三个部分的视图。第一部分应为200dip高,第三部分应为50倾角高,中间部分应采取中间剩余的位置。有没有办法实现它?我试过一些方法,但它不起作用或应用程序崩溃。 感谢帮助 帕特里克
答案 0 :(得分:1)
不确定。使用看起来像这样的RelativeLayout。
<?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">
<!-- Defining the top view -->
<View android:layout_alignParentTop="true"
android:layout_height="200dip"
android:layout_width="fill_parent"
android:id="@+id/top_view"
android:background="#FFFF00"/>
<!-- Defining the bottom view -->
<View android:layout_alignParentBottom="true"
android:layout_height="50dip"
android:layout_width="fill_parent"
android:id="@+id/bottom_view"
android:background="#00FFFF"/>
<!-- Defining the view in between those views -->
<View android:layout_above="@id/bottom_view"
android:layout_below="@id/top_view"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#FF0000"/>
</RelativeLayout>
在代码中为您提供了评论。
答案 1 :(得分:0)
我通常通过将固定视图的layout_height / width设置为特定值(例如android:layout_height="200dp"
)并将android:layout_weight="1"
设置为android:layout_height="wrap_content"
来实现此目的。动态查看。在这种情况下,LinearLayout应该用作包含ViewGroup。