使用LinearLayout将图像和按钮设置为相同的高度?

时间:2017-03-24 15:31:20

标签: image button height

我正在使用WeightLum的LinearLayout,因此我可以设计通用屏幕以在所有屏幕尺寸上运行。也许我无法正确理解wrap_content和match_parent属性。

image

    <?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:id="@+id/content_main"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    app:layout_behavior="@string/appbar_scrolling_view_behavior"
          tools:context="com.hbss.hybridsoftwaresolutions.rashidfaheem.mysecondapplication.easypercentagecalculator.MainActivity"
    tools:showIn="@layout/activity_main"
    android:orientation="vertical"
    android:weightSum="10"
    android:background="#0d001c"
    >

    <View
        android:layout_width="wrap_content"
        android:layout_height="0dp"
        android:layout_weight="1">

    </View>

<LinearLayout
    android:orientation="horizontal"
    android:layout_width="match_parent"
    android:layout_height="0dp"
    android:layout_weight="1"
    android:weightSum="5"
    >
<ImageView
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="1"
    android:src="@drawable/image01"

    />
    <Button
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:text="Percent Calculator"
        android:textSize="15dp"
        android:layout_weight="3"
        android:id="@+id/btnPCalculator"
        />
    <View
        android:layout_width="0dp"
        android:layout_height="wrap_content"
        android:layout_weight="1">

    </View>


</LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:weightSum="5"
        >
        <ImageView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/image04"

            />
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="Percent Increase"
            android:textSize="15dp"
            android:layout_weight="3"
            android:id="@+id/btnPIncrease"
            />
        <View
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

        </View>


</LinearLayout>







    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:weightSum="5"
        >
        <ImageView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/image05"

            />
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="Percent Decrease"
            android:textSize="15dp"
            android:layout_weight="3"
            android:id="@+id/btnPDecrease"
            />
        <View
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

        </View>
</LinearLayout>








    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:weightSum="5"
        >
        <ImageView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/image02"

            />
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="Tip Calculator"
            android:textSize="15dp"
            android:layout_weight="3"
            android:id="@+id/btnTCalculator"
            />
        <View
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

        </View>
</LinearLayout>






        <LinearLayout
            android:orientation="horizontal"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:weightSum="5"
            >
            <ImageView
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1"
                android:src="@drawable/image03"

                />
            <Button
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:text="Percent Margin"
                android:textSize="15dp"
                android:layout_weight="3"
                android:id="@+id/btnPMargin"
                />
            <View
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1">

            </View>

    </LinearLayout>





    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:weightSum="5"
        >
        <ImageView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/image06"

            />
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="Percentage Change"
            android:textSize="15dp"
            android:layout_weight="3"
            android:id="@+id/btnPChange"
            />
        <View
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

        </View>
        </LinearLayout>




    <LinearLayout
        android:orientation="horizontal"
        android:layout_width="match_parent"
        android:layout_height="0dp"
        android:layout_weight="1"
        android:weightSum="5"
        >
        <ImageView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:src="@drawable/image07"

            />
        <Button
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:text="Percentage (what % of)"
            android:textSize="15dp"
            android:layout_weight="3"
            android:id="@+id/btnPWhatof"
            />
        <View
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1">

        </View>
    </LinearLayout>

    </LinearLayout>

1 个答案:

答案 0 :(得分:0)

问题可能是你的ImageView和Button高度。尝试将它们设置为match_parent而不是wrap_content:

 <extend-configuration-property name="gdx.reflect.include" value="com.badlogic.gdx.maps.objects.RectangleMapObject" />

您应该使用match_parent,因此TextView和Button高度都会填充LinearLayout中的所有可用空间。如果你使用wrap_content,他们将只占用他们需要的空间而忽略剩余的可用空间。