高度相同的两种布局

时间:2018-10-17 17:47:05

标签: android android-layout height

我搜索并尝试了很多方法,但是无法解决我的问题。 我尝试使两个Layout的高度相同。在它们的上方和下方,我还有布局,但高度固定。我尝试了很多关于身高,体重的解决方案...但是我从没有我需要的东西。 所以我希望两个ViewPager的大小相同,并且它们的大小填充中心的剩余空间...

有可能吗?

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/white"
    android:orientation="vertical" >

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="23dp"
        android:background="@color/taupe"
        android:paddingLeft="2dp"
        android:paddingRight="2dp">

        <TextView
            android:id="@+id/tv"
            android:layout_width="wrap_content"
            android:layout_height="match_parent"
            android:layout_alignParentStart="true"
            android:layout_alignParentTop="true"
            android:layout_marginTop="0dp"
            android:textAlignment="center"
            android:textColor="@color/white"
            android:textSize="14sp" />

        <ImageButton
            android:id="@+id/btnClose"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_alignParentEnd="true"
            android:backgroundTint="@android:color/holo_red_light" />
    </RelativeLayout>

    <TableLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/taupe">

        <TableRow android:layout_height="28dp">
            ...
        </TableRow>

    </TableLayout>

    <android.support.v4.view.ViewPager
        android:id="@+id/vp_c"
        android:layout_width="match_parent"
        android:layout_height="200dp"
        android:background="@color/background">
    </android.support.v4.view.ViewPager>

    <android.support.v4.view.ViewPager xmlns:android="http://schemas.android.com/apk/res/android"
        android:id="@+id/vpI"
        android:layout_width="fill_parent"
        android:layout_height="200dp">
    </android.support.v4.view.ViewPager>

    <RelativeLayout
        android:layout_width="match_parent"
        android:layout_height="25dp"
        android:background="@color/taupe"
        android:layout_alignParentBottom="true">

        <Button
            android:id="@+id/btnP"
            android:layout_width="30dp"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_toStartOf="@+id/btnN"
            android:background="@android:color/transparent"
            android:text="@string/previous" />

        <Button
            android:id="@+id/btnN"
            android:layout_width="25dp"
            android:layout_height="wrap_content"
            android:layout_alignParentTop="true"
            android:layout_marginEnd="50dp"
            android:background="@android:color/transparent"
            android:text="@string/next" />

        <android.support.design.widget.FloatingActionButton
            android:id="@+id/fab"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_alignParentEnd="true"
            android:layout_margin="@dimen/fab_margin"
            android:background="@color/taupe2"
            android:src="@drawable/ic_add"
            app:backgroundTint="@color/taupe2"
            app:fabSize="mini" />
    </RelativeLayout>
</LinearLayout>

1 个答案:

答案 0 :(得分:1)

您可以使用 weight 属性指示两个元素的高度是按比例调整的。如果您希望两者的比例相同,只需将其高度设置为0dp 并指出相同的重量值。像这样:

<android.support.v4.view.ViewPager
    android:id="@+id/vp_c"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:background="@color/background">
</android.support.v4.view.ViewPager>

<android.support.v4.view.ViewPager 
   xmlns:android="http://schemas.android.com/apk/res/android"
    android:id="@+id/vpI"
    android:layout_width="fill_parent"
    android:layout_height="0dp"
    android:layout_weight="1">
</android.support.v4.view.ViewPager>

请牢记这一点,例如,如果您希望第二个元素占据第一个元素两倍的空间,则只需用android:layout_weight="2"来表示。

祝你好运!